From ce598eb58e1074759d2acdc54f8e5df0a7e93b86 Mon Sep 17 00:00:00 2001 From: Matt Moyer Date: Thu, 22 Oct 2020 11:49:04 -0500 Subject: [PATCH] Fix a timeout in TestCLILoginOIDC that was accidentally shortened in 0adbb5234e16b5bc4108fd61fddc3d372cb9925f. Signed-off-by: Matt Moyer --- test/integration/cli_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/cli_test.go b/test/integration/cli_test.go index bed3a3dd..f560d318 100644 --- a/test/integration/cli_test.go +++ b/test/integration/cli_test.go @@ -146,7 +146,7 @@ func getLoginProvider(t *testing.T) *loginProviderPatterns { func TestCLILoginOIDC(t *testing.T) { env := library.IntegrationEnv(t) - ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second) + ctx, cancel := context.WithTimeout(context.Background(), 5*time.Minute) defer cancel() // Find the login CSS selectors for the test issuer, or fail fast.