Skip to content

Commit

Permalink
Merge pull request ethereum-optimism#8470 from ethereum-optimism/aj/r…
Browse files Browse the repository at this point in the history
…epeatable-test

op-e2e: Use a fixed seed to make TestMixedDeposits repeatable
  • Loading branch information
mslipper authored Dec 6, 2023
2 parents 52ef1b6 + 10243c7 commit 4f03425
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion op-e2e/system_tob_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ func TestMixedDepositValidity(t *testing.T) {
}

// Create our random provider
randomProvider := rand.New(rand.NewSource(time.Now().Unix()))
randomProvider := rand.New(rand.NewSource(1452))

// Now we create a number of deposits from each transactor
for i := 0; i < depositTxCount; i++ {
Expand Down

0 comments on commit 4f03425

Please sign in to comment.