From 169baa9c2add3b5a0cb77eef895c3586a9c2349d Mon Sep 17 00:00:00 2001 From: Jason Parraga Date: Thu, 1 Aug 2024 22:41:38 -0700 Subject: [PATCH] Increase test timeout for CI Signed-off-by: Jason Parraga --- flytestdlib/cache/auto_refresh_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flytestdlib/cache/auto_refresh_test.go b/flytestdlib/cache/auto_refresh_test.go index 59ae4b7494..5e1c49777e 100644 --- a/flytestdlib/cache/auto_refresh_test.go +++ b/flytestdlib/cache/auto_refresh_test.go @@ -199,7 +199,7 @@ func TestCacheFour(t *testing.T) { // wait for all workers to run assert.Eventually(t, func() bool { return syncer.callCount.Load() == int32(10) - }, time.Second, time.Millisecond) + }, 5*time.Second, time.Millisecond) // wait some more time time.Sleep(500 * time.Millisecond)