Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.

Commit 4804eb6

Browse files
committed
Fix a test error from before
1 parent 1bc2601 commit 4804eb6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/firebase_auth/ios/Classes/FirebaseAuthPlugin.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66

77
#import "Firebase/Firebase.h"
88

9-
@interface FLTFirebaseAuthPlugin : NSObject <FlutterPlugin>
9+
@interface FLTFirebaseAuthPlugin : NSObject<FlutterPlugin>
1010
@end

packages/firebase_auth/test/firebase_auth_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ void main() {
400400

401401
test('updateEmail', () async {
402402
final String updatedEmail = 'atestemail@gmail.com';
403-
auth.updateEmail(email: updatedEmail);
403+
await auth.updateEmail(email: updatedEmail);
404404
expect(
405405
log,
406406
<Matcher>[

0 commit comments

Comments
 (0)