Skip to content

Commit

Permalink
AuthResult structure isNewUser default respected
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-kew committed Jul 15, 2024
1 parent a18e3f2 commit 79a7516
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ class FirebaseAuthTest {
assertNull(result.additionalUserInfo!!.providerId, "AdditionalUserInfo providerId throws.")
assertNull(result.additionalUserInfo!!.username, "AdditionalUserInfo username throws.")
assertNull(result.additionalUserInfo!!.profile, "AdditionalUserInfo profile throws.")
assertNull(result.additionalUserInfo!!.isNewUser, "AdditionalUserInfo isNewUser throws.")
assertFalse(result.additionalUserInfo!!.isNewUser, "AdditionalUserInfo isNewUser does not exist.")
}

private suspend fun getTestUid(email: String, password: String): String {
Expand Down

0 comments on commit 79a7516

Please sign in to comment.