From 8d49df179eee09f542e4a3a6503651a1a5b20f6c Mon Sep 17 00:00:00 2001 From: dudong2 Date: Fri, 26 Apr 2024 14:36:25 +0900 Subject: [PATCH] test: Fix sim test to not run on normal test --- app/sim_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/sim_test.go b/app/sim_test.go index 37c38f5f4..9050c565c 100644 --- a/app/sim_test.go +++ b/app/sim_test.go @@ -71,7 +71,7 @@ func TestFullAppSimulation(t *testing.T) { config.ChainID = types.TestnetChainID + "-1" sdk.DefaultPowerReduction = sdkmath.NewIntFromUint64(1000000) - db, dir, logger, skip, err := simtestutil.SetupSimulation(config, "leveldb-app-sim", "Simulation", simcli.FlagVerboseValue, true) + db, dir, logger, skip, err := simtestutil.SetupSimulation(config, "leveldb-app-sim", "Simulation", simcli.FlagVerboseValue, simcli.FlagEnabledValue) if skip { t.Skip("skipping application simulation") }