Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
reformat
  • Loading branch information
collinjackson committed Nov 18, 2019
commit 06cce092196872b5e7a60ec9e74eb63d0106246d
3 changes: 2 additions & 1 deletion packages/firebase_auth/example/test/firebase_auth.dart
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ void main() {
await auth.fetchSignInMethodsForEmail(email: testEmail);
expect(methods.length, 1);
expect(methods[0], 'password');
final AuthResult renewResult = await result.user.reauthenticateWithCredential(
final AuthResult renewResult =
await result.user.reauthenticateWithCredential(
EmailAuthProvider.getCredential(
email: testEmail,
password: testPassword,
Expand Down