diff --git a/internal/assertions/condition_test.go b/internal/assertions/condition_test.go index 651a1b331..711499811 100644 --- a/internal/assertions/condition_test.go +++ b/internal/assertions/condition_test.go @@ -86,7 +86,7 @@ func TestConditionEventuallyTimeout(t *testing.T) { mock := new(errorsCapturingT) // A condition function that returns after the Eventually timeout condition := func() bool { - time.Sleep(5 * time.Millisecond) + time.Sleep(100 * time.Millisecond) return true }