Index: chrome/browser/profiles/profile_info_cache_unittest.cc |
diff --git a/chrome/browser/profiles/profile_info_cache_unittest.cc b/chrome/browser/profiles/profile_info_cache_unittest.cc |
index 309c24aa7c5d03038c7217a9cebb50afdd6a725b..d737cdce25c1388c25567d9f93a9118b4f18dad0 100644 |
--- a/chrome/browser/profiles/profile_info_cache_unittest.cc |
+++ b/chrome/browser/profiles/profile_info_cache_unittest.cc |
@@ -382,8 +382,9 @@ TEST_F(ProfileInfoCacheTest, GAIAPicture) { |
EXPECT_TRUE(gfx::test::IsEqual( |
gaia_image, GetCache()->GetAvatarIconOfProfileAtIndex(1))); |
- // Set another avatar. This should make it preferred over the GAIA image. |
+ // Set a non-default avatar. This should be preferred over the GAIA image. |
GetCache()->SetAvatarIconOfProfileAtIndex(1, kOtherAvatarIndex); |
+ GetCache()->SetProfileIsUsingDefaultAvatarAtIndex(1, false); |
EXPECT_FALSE(GetCache()->ProfileIsUsingDefaultAvatarAtIndex(1)); |
EXPECT_FALSE(GetCache()->IsUsingGAIAPictureOfProfileAtIndex(1)); |
int other_avatar_id = |