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

Unified Diff: ios/chrome/browser/ui/find_bar/find_in_page_egtest.mm

Issue 2642193012: Make EarlGrey matchers compliant with Chromium style. (Closed)
Patch Set: mistake 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
Index: ios/chrome/browser/ui/find_bar/find_in_page_egtest.mm
diff --git a/ios/chrome/browser/ui/find_bar/find_in_page_egtest.mm b/ios/chrome/browser/ui/find_bar/find_in_page_egtest.mm
index dce6d1419d079ba12a11b14f9248627fcbb696c6..52962eb54b7c55b0a2a747fdc286777e80d5eb66 100644
--- a/ios/chrome/browser/ui/find_bar/find_in_page_egtest.mm
+++ b/ios/chrome/browser/ui/find_bar/find_in_page_egtest.mm
@@ -29,8 +29,8 @@ const std::string kFindInPageResponse = "Find in page. Find in page.";
} // namespace
-using chrome_test_util::buttonWithAccessibilityLabel;
-using chrome_test_util::webViewContainingText;
+using chrome_test_util::ButtonWithAccessibilityLabel;
Eugene But (OOO till 7-30) 2017/01/23 19:39:03 Is this used?
baxley 2017/01/24 22:18:49 Done.
+using chrome_test_util::WebViewContainingText;
// Tests for Find in Page.
@interface FindInPageTestCase : ChromeTestCase
@@ -221,7 +221,7 @@ using chrome_test_util::webViewContainingText;
// Verify web page finished loading.
[[EarlGrey
- selectElementWithMatcher:webViewContainingText(kFindInPageResponse)]
+ selectElementWithMatcher:WebViewContainingText(kFindInPageResponse)]
assertWithMatcher:grey_notNil()];
}

Powered by Google App Engine
This is Rietveld 408576698