Skip to content

Commit 4bb9c4f

Browse files
committed
Update integration_test.cc
1 parent 818a583 commit 4bb9c4f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

auth/integration_test/src/integration_test.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -696,14 +696,14 @@ TEST_F(FirebaseAuthTest, TestUpdateUserProfileNull) {
696696
WaitForCompletion(update_profile_null, "UpdateUserProfileNull");
697697
user = auth_->current_user();
698698
EXPECT_EQ(user.display_name(), kDisplayName);
699-
EXPECT_EQ(user.photo_url(), nullptr);
699+
EXPECT_EQ(user.photo_url(), "");
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(), nullptr);
706+
EXPECT_EQ(user.photo_url(), "");
707707
DeleteUser();
708708
}
709709

0 commit comments

Comments
 (0)