Skip to content

Commit 0ff02b4

Browse files
committed
Update integration_test.cc
1 parent 6b83deb commit 0ff02b4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

auth/integration_test/src/integration_test.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -691,19 +691,19 @@ TEST_F(FirebaseAuthTest, TestUpdateUserProfileNull) {
691691
EXPECT_EQ(user.photo_url(), kPhotoUrl);
692692
firebase::auth::User::UserProfile user_profile_null;
693693
user_profile_null.display_name = kDisplayName;
694-
user_profile_null.photo_url = null;
694+
user_profile_null.photo_url = nullptr;
695695
firebase::Future<void> update_profile_null = user.UpdateUserProfile(user_profile_null);
696696
WaitForCompletion(user_profile_null, "UpdateUserProfileNull");
697697
user = auth_->current_user();
698698
EXPECT_EQ(user.display_name(), kDisplayName);
699-
EXPECT_EQ(user.photo_url(), null);
699+
EXPECT_EQ(user.photo_url(), nullptr);
700700
SignOut();
701701
WaitForCompletion(
702702
auth_->SignInWithEmailAndPassword(email.c_str(), kTestPassword),
703703
"SignInWithEmailAndPassword");
704704
user = auth_->current_user();
705705
EXPECT_EQ(user.display_name(), kDisplayName);
706-
EXPECT_EQ(user.photo_url(), null);
706+
EXPECT_EQ(user.photo_url(), nullptr);
707707
DeleteUser();
708708
}
709709

0 commit comments

Comments
 (0)