From c4d95a5a2446d290b6ff69b0f69b818f2271fd9c Mon Sep 17 00:00:00 2001 From: Antoine Grondin Date: Fri, 25 Oct 2024 14:51:09 +0900 Subject: [PATCH] relax timeout --- pkg/retry/retry_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/retry/retry_test.go b/pkg/retry/retry_test.go index b2be8a8f..a129c23a 100644 --- a/pkg/retry/retry_test.go +++ b/pkg/retry/retry_test.go @@ -44,7 +44,7 @@ func TestRetrySuccess(t *testing.T) { } func TestRetryFailOnce(t *testing.T) { - ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second) + ctx, cancel := context.WithTimeout(context.Background(), 30*time.Second) defer cancel() now := time.Date(2024, time.October, 25, 13, 40, 37, 0, time.UTC) start := now