diff --git a/x/concentrated-liquidity/genesis_test.go b/x/concentrated-liquidity/genesis_test.go index 4ce639fa5ed..610fba3fd15 100644 --- a/x/concentrated-liquidity/genesis_test.go +++ b/x/concentrated-liquidity/genesis_test.go @@ -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{}) @@ -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{}) @@ -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{}) diff --git a/x/concentrated-liquidity/internal/swapstrategy/swap_strategy_test.go b/x/concentrated-liquidity/internal/swapstrategy/swap_strategy_test.go index a33608e3732..d91ad495323 100644 --- a/x/concentrated-liquidity/internal/swapstrategy/swap_strategy_test.go +++ b/x/concentrated-liquidity/internal/swapstrategy/swap_strategy_test.go @@ -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)) } diff --git a/x/concentrated-liquidity/keeper_test.go b/x/concentrated-liquidity/keeper_test.go index a3002897361..8748c2d2160 100644 --- a/x/concentrated-liquidity/keeper_test.go +++ b/x/concentrated-liquidity/keeper_test.go @@ -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)) }