Skip to content

Commit

Permalink
tests: wait longer in TestTotalWeightChanges for larger nightly test …
Browse files Browse the repository at this point in the history
…network (#5841)
  • Loading branch information
ohill authored Dec 7, 2023
1 parent f48be99 commit 4291e53
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/e2e-go/features/stateproofs/stateproofs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -843,7 +843,11 @@ func TestTotalWeightChanges(t *testing.T) {
richNode.goOffline(a, &fixture, rnd)
}

a.NoError(fixture.WaitForRound(rnd, 30*time.Second))
if testing.Short() {
a.NoError(fixture.WaitForRound(rnd, 30*time.Second))
} else {
a.NoError(fixture.WaitForRound(rnd, 60*time.Second))
}
blk, err := libgoal.BookkeepingBlock(rnd)
a.NoErrorf(err, "failed to retrieve block from algod on round %d", rnd)

Expand Down

0 comments on commit 4291e53

Please sign in to comment.