File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
auth/integration_test/src Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -693,7 +693,7 @@ TEST_F(FirebaseAuthTest, TestUpdateUserProfileNull) {
693
693
user_profile_null.display_name = kDisplayName ;
694
694
user_profile_null.photo_url = nullptr ;
695
695
firebase::Future<void > update_profile_null = user.UpdateUserProfile (user_profile_null);
696
- WaitForCompletion (user_profile_null , " UpdateUserProfileNull" );
696
+ WaitForCompletion (update_profile_null , " UpdateUserProfileNull" );
697
697
user = auth_->current_user ();
698
698
EXPECT_EQ (user.display_name (), kDisplayName );
699
699
EXPECT_EQ (user.photo_url (), nullptr );
@@ -729,7 +729,7 @@ TEST_F(FirebaseAuthTest, TestUpdateUserProfileEmpty) {
729
729
user_profile_null.display_name = kDisplayName ;
730
730
user_profile_null.photo_url = " " ;
731
731
firebase::Future<void > update_profile_null = user.UpdateUserProfile (user_profile_null);
732
- WaitForCompletion (user_profile_null , " UpdateUserProfileEmpty" );
732
+ WaitForCompletion (update_profile_null , " UpdateUserProfileEmpty" );
733
733
user = auth_->current_user ();
734
734
EXPECT_EQ (user.display_name (), kDisplayName );
735
735
EXPECT_EQ (user.photo_url (), " " );
You can’t perform that action at this time.
0 commit comments