Skip to content

Commit

Permalink
Merge pull request #113 from EspressoSystems/jh/e2e
Browse files Browse the repository at this point in the history
Increase the timeout limit for the e2e validation check
  • Loading branch information
ImJeremyHe committed Apr 9, 2024
2 parents 21f69b0 + edeaeb3 commit 570aeee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system_tests/espresso_e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ func TestEspressoE2E(t *testing.T) {
Require(t, err)

// Wait for the number of validated messages to catch up
err = waitFor(t, ctx, func() bool {
err = waitForWith(t, ctx, 60*time.Second, 5*time.Second, func() bool {
validatedCnt := node.ConsensusNode.BlockValidator.Validated(t)
log.Info("waiting for validation", "validatedCnt", validatedCnt, "msgCnt", msgCnt)
return validatedCnt >= msgCnt
Expand Down

0 comments on commit 570aeee

Please sign in to comment.