test: increase the timeout for the flaky test TestCtlV3AuthCertCNWithWithConcurrentOperation

Signed-off-by: Benjamin Wang <wachao@vmware.com>
This commit is contained in:
Benjamin Wang 2023-08-15 10:35:44 +01:00
parent b130741eb3
commit bbee33e20a

View File

@ -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")
}
}