File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
auth/integration_test/src Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -691,19 +691,19 @@ TEST_F(FirebaseAuthTest, TestUpdateUserProfileNull) {
691
691
EXPECT_EQ (user.photo_url (), kPhotoUrl );
692
692
firebase::auth::User::UserProfile user_profile_null;
693
693
user_profile_null.display_name = kDisplayName ;
694
- user_profile_null.photo_url = null ;
694
+ user_profile_null.photo_url = nullptr ;
695
695
firebase::Future<void > update_profile_null = user.UpdateUserProfile (user_profile_null);
696
696
WaitForCompletion (user_profile_null, " UpdateUserProfileNull" );
697
697
user = auth_->current_user ();
698
698
EXPECT_EQ (user.display_name (), kDisplayName );
699
- EXPECT_EQ (user.photo_url (), null );
699
+ EXPECT_EQ (user.photo_url (), nullptr );
700
700
SignOut ();
701
701
WaitForCompletion (
702
702
auth_->SignInWithEmailAndPassword (email.c_str (), kTestPassword ),
703
703
" SignInWithEmailAndPassword" );
704
704
user = auth_->current_user ();
705
705
EXPECT_EQ (user.display_name (), kDisplayName );
706
- EXPECT_EQ (user.photo_url (), null );
706
+ EXPECT_EQ (user.photo_url (), nullptr );
707
707
DeleteUser ();
708
708
}
709
709
You can’t perform that action at this time.
0 commit comments