Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(105)

Unified Diff: ios/chrome/browser/ui/toolbar/toolbar_egtest.mm

Issue 2662583002: [ios] Disables ToolbarTestCase.testCopyPasteURL on device. (Closed)
Patch Set: iOS9 Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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");
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698