Merge pull request #167 from mattmoyer/fix-accidental-timeout-regression

Fix a timeout in TestCLILoginOIDC that was accidentally shortened.
This commit is contained in:
Matt Moyer 2020-10-22 12:24:49 -05:00 committed by GitHub
commit 8772a00824
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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.