Skip to content

Commit

Permalink
test: eth: wait longer for chain to settle in block hash test (#11863)
Browse files Browse the repository at this point in the history
I shrunk this down to 10 when I last deflaked this test, but I was too
optimistic. I'm bringing this back up to 50.

See https://gist.github.com/Stebalien/701039637361b3b9cb328d7c2d61beda
  • Loading branch information
Stebalien authored Apr 9, 2024
1 parent e68b762 commit 23b61c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion itests/eth_block_hash_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ func TestEthBlockHashesCorrect_MultiBlockTipset(t *testing.T) {
ctx := context.Background()

// let the chain run a little bit longer to minimise the chance of reorgs
n2.WaitTillChain(ctx, kit.HeightAtLeast(head.Height()+10))
n2.WaitTillChain(ctx, kit.HeightAtLeast(head.Height()+50))

tsk := head.Key()
for i := 1; i <= int(head.Height()); i++ {
Expand Down

0 comments on commit 23b61c3

Please sign in to comment.