We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6cbe9ca commit c3288eaCopy full SHA for c3288ea
packages/firebase_auth/example/test/firebase_auth.dart
@@ -55,7 +55,8 @@ void main() {
55
expect(tokenResult.claims['firebase']['sign_in_provider'], 'anonymous');
56
expect(tokenResult.claims['user_id'], user.uid);
57
// Verify that token will be the same after another getIdToken call with refresh = false option
58
- final IdTokenResult newTokenResultWithoutRefresh = await user.getIdToken(refresh: false);
+ final IdTokenResult newTokenResultWithoutRefresh =
59
+ await user.getIdToken(refresh: false);
60
expect(originalToken, newTokenResultWithoutRefresh.token);
61
await auth.signOut();
62
final FirebaseUser user2 = (await auth.signInAnonymously()).user;
0 commit comments