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

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

Issue 2662583002: [ios] Disables ToolbarTestCase.testCopyPasteURL on device. (Closed)
Patch Set: Use macro and fix test name. 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..db8af150ea5db5b440dbed8c1a7347471126d671 100644
--- a/ios/chrome/browser/ui/toolbar/toolbar_egtest.mm
+++ b/ios/chrome/browser/ui/toolbar/toolbar_egtest.mm
@@ -277,6 +277,11 @@ void SelectNewTabPagePanel(NewTabPage::PanelIdentifier panel_type) {
// Verifies that copying and pasting a URL includes the hidden protocol prefix.
- (void)testCopyPasteURL {
+ // TODO(crbug.com/686069): Re-enable this test. It is failing on iOS 9.
+ if (!base::ios::IsRunningOnIOS10OrLater()) {
+ EARL_GREY_TEST_DISABLED(@"Disabled on iOS 9.");
+ }
+
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