diff --git a/go.work.example b/go.work.example index 961d4f9a7cd7..ad894e8b4fd8 100644 --- a/go.work.example +++ b/go.work.example @@ -13,8 +13,8 @@ use ( ./math ./orm ./simapp - ./simapp/v2 ./tests + ./tests/systemtests ./server/v2/stf ./server/v2/appmanager ./store diff --git a/types/simulation/config.go b/types/simulation/config.go index df0eb49cd872..07cd6d4c69d5 100644 --- a/types/simulation/config.go +++ b/types/simulation/config.go @@ -34,6 +34,7 @@ func (c Config) shallowCopy() Config { // With sets the values of t, seed, and fuzzSeed in a copy of the Config and returns the copy. func (c Config) With(t *testing.T, seed int64, fuzzSeed []byte) Config { + t.Helper() r := c.shallowCopy() r.T = t r.Seed = seed