Skip to content

Commit

Permalink
linter
Browse files Browse the repository at this point in the history
  • Loading branch information
mtsitrin committed Dec 1, 2024
1 parent 4002904 commit 08e9bf5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion simulation/simulation_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,8 @@ func TestAppStateDeterminism(t *testing.T) {

for i := 0; i < numSeeds; i++ {
if config.Seed == simcli.DefaultSeedValue {
config.Seed = rand.Int63() // overwrite default seed //nolint:gosec
// overwrite default seed
config.Seed = rand.Int63() //nolint:gosec
}

fmt.Println("config.Seed: ", config.Seed)
Expand Down

0 comments on commit 08e9bf5

Please sign in to comment.