Skip to content

Commit

Permalink
chore(CL): re-enable CL module tests (finalize merge #2)
Browse files Browse the repository at this point in the history
  • Loading branch information
p0mvn committed Jan 3, 2023
1 parent f611e01 commit 01dc9c9
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 15 deletions.
9 changes: 0 additions & 9 deletions x/concentrated-liquidity/genesis_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@ var (
// TestInitGenesis tests the InitGenesis function of the ConcentratedLiquidityKeeper.
// It checks that the state is initialized correctly based on the provided genesis.
func TestInitGenesis(t *testing.T) {

t.Skip("TODO: re-enable this when CL state-breakage PR is merged.")

// Set up the app and context
app := osmoapp.Setup(false)
ctx := app.BaseApp.NewContext(false, tmproto.Header{})
Expand All @@ -42,9 +39,6 @@ func TestInitGenesis(t *testing.T) {
// TestExportGenesis tests the ExportGenesis function of the ConcentratedLiquidityKeeper.
// It checks that the correct genesis state is returned.
func TestExportGenesis(t *testing.T) {

t.Skip("TODO: re-enable this when CL state-breakage PR is merged.")

// Set up the app and context
app := osmoapp.Setup(false)
ctx := app.BaseApp.NewContext(false, tmproto.Header{})
Expand All @@ -62,9 +56,6 @@ func TestExportGenesis(t *testing.T) {
// TestMarshalUnmarshalGenesis tests the MarshalUnmarshalGenesis functions of the ConcentratedLiquidityKeeper.
// It checks that the exported genesis can be marshaled and unmarshaled without panicking.
func TestMarshalUnmarshalGenesis(t *testing.T) {

t.Skip("TODO: re-enable this when CL state-breakage PR is merged.")

// Set up the app and context
app := osmoapp.Setup(false)
ctx := app.BaseApp.NewContext(false, tmproto.Header{})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@ type StrategyTestSuite struct {
}

func TestStrategyTestSuite(t *testing.T) {

t.Skip("TODO: re-enable this when CL state-breakage PR is merged.")

suite.Run(t, new(StrategyTestSuite))
}

Expand Down
3 changes: 0 additions & 3 deletions x/concentrated-liquidity/keeper_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,6 @@ type KeeperTestSuite struct {
}

func TestKeeperTestSuite(t *testing.T) {

t.Skip("TODO: re-enable this when CL state-breakage PR is merged.")

suite.Run(t, new(KeeperTestSuite))
}

Expand Down

0 comments on commit 01dc9c9

Please sign in to comment.