From 57a4fc34426fdf02613dc5c9e1acdf3bb7b69532 Mon Sep 17 00:00:00 2001 From: Frederic BIDON Date: Sun, 8 Feb 2026 14:35:36 +0100 Subject: [PATCH] test: fixed flaky async test Signed-off-by: Frederic BIDON --- internal/assertions/condition_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }