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