Skip to content

Commit

Permalink
Extend timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
jveski committed Nov 21, 2023
1 parent 9da9abe commit d893d9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/testutil/testutil.go
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ func Eventually(t testing.TB, fn func() bool) {
t.Helper()
start := time.Now()
for {
if time.Since(start) > time.Second*2 {
if time.Since(start) > time.Second*5 {
t.Fatalf("timeout while waiting for condition")
return
}
Expand Down

0 comments on commit d893d9d

Please sign in to comment.