| Index: ios/chrome/browser/ui/keyboard_commands_egtest.mm
|
| diff --git a/ios/chrome/browser/ui/keyboard_commands_egtest.mm b/ios/chrome/browser/ui/keyboard_commands_egtest.mm
|
| index 3a0f46fdac42b22daa9ae03f85044f37002dc514..e0305e83e2692a92650c7dfe7e6f038553ed3dd7 100644
|
| --- a/ios/chrome/browser/ui/keyboard_commands_egtest.mm
|
| +++ b/ios/chrome/browser/ui/keyboard_commands_egtest.mm
|
| @@ -136,7 +136,7 @@ const CGFloat kScrollDisplacement = 50.0;
|
|
|
| // Close Settings
|
| id<GREYMatcher> settingsDoneButton =
|
| - chrome_test_util::buttonWithAccessibilityLabelId(
|
| + chrome_test_util::ButtonWithAccessibilityLabelId(
|
| IDS_IOS_NAVIGATION_BAR_DONE_BUTTON);
|
| [[EarlGrey selectElementWithMatcher:settingsDoneButton]
|
| performAction:grey_tap()];
|
| @@ -152,7 +152,7 @@ const CGFloat kScrollDisplacement = 50.0;
|
| // Bookmark page
|
| if (IsIPadIdiom()) {
|
| id<GREYMatcher> bookmarkMatcher =
|
| - chrome_test_util::buttonWithAccessibilityLabelId(IDS_TOOLTIP_STAR);
|
| + chrome_test_util::ButtonWithAccessibilityLabelId(IDS_TOOLTIP_STAR);
|
| [[EarlGrey selectElementWithMatcher:bookmarkMatcher]
|
| performAction:grey_tap()];
|
| } else {
|
| @@ -163,7 +163,7 @@ const CGFloat kScrollDisplacement = 50.0;
|
| }
|
|
|
| // Tap on the HUD.
|
| - id<GREYMatcher> edit = chrome_test_util::buttonWithAccessibilityLabelId(
|
| + id<GREYMatcher> edit = chrome_test_util::ButtonWithAccessibilityLabelId(
|
| IDS_IOS_NAVIGATION_BAR_EDIT_BUTTON);
|
| [[EarlGrey selectElementWithMatcher:edit] performAction:grey_tap()];
|
|
|
|
|