Skip to content

Commit f98699b

Browse files
committed
Fix timeout in AuthValidationTest to match previous value
1 parent d315040 commit f98699b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aws-auth-cognito/src/test/java/com/amplifyframework/auth/cognito/AuthValidationTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ class AuthValidationTest {
458458
}
459459
}
460460

461-
private fun signOut() = runBlocking { withTimeout(10000L) { signOutUseCase.execute() } }
461+
private fun signOut() = runBlocking { withTimeout(100000L) { signOutUseCase.execute() } }
462462

463463
private fun signInHostedUi(): AuthSignInResult {
464464
every { hostedUIClient.launchCustomTabsSignIn(any()) } answers {

0 commit comments

Comments
 (0)