fix(types): fix linting error (#20700)

This commit is contained in:
Matt Kocubinski 2024-06-17 10:51:31 -05:00 committed by GitHub
parent 65ac3f42ec
commit 581b4f0065
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -13,8 +13,8 @@ use (
./math
./orm
./simapp
./simapp/v2
./tests
./tests/systemtests
./server/v2/stf
./server/v2/appmanager
./store

View File

@ -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