Skip to content

Commit

Permalink
CCIP-4753: Defining the timer based on test timeout (#15907)
Browse files Browse the repository at this point in the history
  • Loading branch information
b-gopalswami authored Jan 15, 2025
1 parent 912d6bc commit 32be20e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deployment/ccip/changeset/test_assertions.go
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ func ConfirmExecWithSeqNrs(
return nil, errors.New("no expected sequence numbers provided")
}

timer := time.NewTimer(8 * time.Minute)
timer := time.NewTimer(tests.WaitTimeout(t))
defer timer.Stop()
tick := time.NewTicker(3 * time.Second)
defer tick.Stop()
Expand Down

0 comments on commit 32be20e

Please sign in to comment.