Chromium Code Reviews| Index: ios/chrome/browser/ui/toolbar/toolbar_egtest.mm |
| diff --git a/ios/chrome/browser/ui/toolbar/toolbar_egtest.mm b/ios/chrome/browser/ui/toolbar/toolbar_egtest.mm |
| index 22febcabf10cc9bf9264b48d300425687931d4ba..dca16ff934d313735e549bed6a6d936a15ba67ab 100644 |
| --- a/ios/chrome/browser/ui/toolbar/toolbar_egtest.mm |
| +++ b/ios/chrome/browser/ui/toolbar/toolbar_egtest.mm |
| @@ -276,7 +276,12 @@ void SelectNewTabPagePanel(NewTabPage::PanelIdentifier panel_type) { |
| } |
| // Verifies that copying and pasting a URL includes the hidden protocol prefix. |
| -- (void)testCopyPasteURL { |
| +- (void)MAYBE_testCopyPasteURL { |
|
baxley
2017/01/27 16:41:43
remove MAYBE_
baxley
2017/01/27 16:41:43
remove MAYBE_
|
| + // TODO(crbug.com/686069): Re-enable this test. It is failing on iOS 9. |
| + if (!base::ios::IsRunningOnIOS10OrLater()) { |
| + return; |
|
baxley
2017/01/27 16:41:43
we have a macro for this to log that it is disable
|
| + } |
| + |
| std::map<GURL, std::string> responses; |
| const GURL URL = web::test::HttpServer::MakeUrl("http://testPage"); |
| const GURL secondURL = web::test::HttpServer::MakeUrl("http://pastePage"); |