| Index: chrome/browser/extensions/lazy_background_page_apitest.cc
|
| diff --git a/chrome/browser/extensions/lazy_background_page_apitest.cc b/chrome/browser/extensions/lazy_background_page_apitest.cc
|
| index f526a7443ab55de3f9aa11cda4188d912f4ebaaf..c4e2607fed94a98d7ea92a3220819025df10e55a 100644
|
| --- a/chrome/browser/extensions/lazy_background_page_apitest.cc
|
| +++ b/chrome/browser/extensions/lazy_background_page_apitest.cc
|
| @@ -287,9 +287,8 @@ IN_PROC_BROWSER_TEST_F(LazyBackgroundPageApiTest, MAYBE_WaitForNTP) {
|
| EXPECT_TRUE(catcher.GetNextResult()) << catcher.message();
|
|
|
| // The extension should've opened a new tab to an extension page.
|
| - EXPECT_TRUE(chrome::IsNTPURL(
|
| - browser()->tab_strip_model()->GetActiveWebContents()->GetURL(),
|
| - browser()->profile()));
|
| + EXPECT_EQ(GURL(chrome::kChromeUINewTabURL),
|
| + browser()->tab_strip_model()->GetActiveWebContents()->GetURL());
|
|
|
| // Lazy Background Page still exists, because the extension created a new tab
|
| // to an extension page.
|
|
|