Chromium Code Reviews| Index: chrome/browser/chromeos/customization_document_unittest.cc |
| diff --git a/chrome/browser/chromeos/customization_document_unittest.cc b/chrome/browser/chromeos/customization_document_unittest.cc |
| index 4eae520b385cc0d6e07bb9946fbbe8b7a505beb0..f9ca9805250603d0b288b1312a4f0e96fd1e7e2f 100644 |
| --- a/chrome/browser/chromeos/customization_document_unittest.cc |
| +++ b/chrome/browser/chromeos/customization_document_unittest.cc |
| @@ -323,8 +323,9 @@ TEST_F(ServicesCustomizationDocumentTest, Basic) { |
| RunUntilIdle(); |
| EXPECT_TRUE(doc->IsReady()); |
| - EXPECT_EQ(doc->GetDefaultWallpaperUrl().spec(), |
| - "http://somedomain.com/image.png"); |
| + GURL wallpaper_url; |
| + EXPECT_TRUE(doc->GetDefaultWallpaperUrl(&wallpaper_url)); |
| + EXPECT_EQ(wallpaper_url.spec(), "http://somedomain.com/image.png"); |
|
Daniel Erat
2014/04/19 14:24:08
EXPECT_EQ()'s arguments should be (expected, actua
Alexander Alekseev
2014/04/21 16:49:41
Done.
|
| std::vector<std::string> default_apps; |
| EXPECT_TRUE(doc->GetDefaultApps(&default_apps)); |