| Index: chrome/browser/notifications/platform_notification_service_interactive_uitest.cc
|
| diff --git a/chrome/browser/notifications/platform_notification_service_interactive_uitest.cc b/chrome/browser/notifications/platform_notification_service_interactive_uitest.cc
|
| index 88f3984ab24b2d60305b35b7632e8ce818010074..e00df83973bf26ae81195b6dc865f2eb6c05b406 100644
|
| --- a/chrome/browser/notifications/platform_notification_service_interactive_uitest.cc
|
| +++ b/chrome/browser/notifications/platform_notification_service_interactive_uitest.cc
|
| @@ -7,7 +7,6 @@
|
| #include <vector>
|
|
|
| #include "base/command_line.h"
|
| -#include "base/feature_list.h"
|
| #include "base/files/file_path.h"
|
| #include "base/path_service.h"
|
| #include "base/strings/string_piece.h"
|
| @@ -365,12 +364,8 @@
|
| content::WebContents* web_contents =
|
| browser()->tab_strip_model()->GetActiveWebContents();
|
| ASSERT_TRUE(content::WaitForLoadStop(web_contents));
|
| -
|
| - std::string url = web_contents->GetLastCommittedURL().spec();
|
| - if (base::FeatureList::IsEnabled(features::kMaterialDesignSettings))
|
| - ASSERT_EQ("chrome://settings/content/notifications", url);
|
| - else
|
| - ASSERT_EQ("chrome://settings/contentExceptions#notifications", url);
|
| + ASSERT_EQ("chrome://settings/contentExceptions#notifications",
|
| + web_contents->GetLastCommittedURL().spec());
|
| }
|
|
|
| IN_PROC_BROWSER_TEST_F(PlatformNotificationServiceBrowserTest,
|
|
|