From bbee33e20a857ae73dcd1b8fd15bad144419ac56 Mon Sep 17 00:00:00 2001 From: Benjamin Wang Date: Tue, 15 Aug 2023 10:35:44 +0100 Subject: [PATCH] test: increase the timeout for the flaky test TestCtlV3AuthCertCNWithWithConcurrentOperation Signed-off-by: Benjamin Wang --- tests/e2e/ctl_v3_auth_no_proxy_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/e2e/ctl_v3_auth_no_proxy_test.go b/tests/e2e/ctl_v3_auth_no_proxy_test.go index 719e74b0564..840307ec3b6 100644 --- a/tests/e2e/ctl_v3_auth_no_proxy_test.go +++ b/tests/e2e/ctl_v3_auth_no_proxy_test.go @@ -136,7 +136,7 @@ func TestCtlV3AuthCertCNWithWithConcurrentOperation(t *testing.T) { t.Fatalf("Unexpected error: %v", err) case <-donec: t.Log("All done!") - case <-time.After(30 * time.Second): - t.Fatal("Test case timeout after 20 seconds") + case <-time.After(40 * time.Second): + t.Fatal("Test case timeout after 40 seconds") } }