| Index: ios/chrome/browser/ui/settings/accounts_collection_egtest.mm
|
| diff --git a/ios/chrome/browser/ui/settings/accounts_collection_egtest.mm b/ios/chrome/browser/ui/settings/accounts_collection_egtest.mm
|
| index 3fb88f5c8130a2977c839867444173ef59b7bbc2..117c69a8a365c464c3ed3d79a8d9ce4b72829f0e 100644
|
| --- a/ios/chrome/browser/ui/settings/accounts_collection_egtest.mm
|
| +++ b/ios/chrome/browser/ui/settings/accounts_collection_egtest.mm
|
| @@ -51,14 +51,14 @@ void TapViewWithAccessibilityId(NSString* accessiblity_id) {
|
| // Taps the button with accessibility label |label|.
|
| void TapButtonWithAccessibilityLabel(NSString* label) {
|
| id<GREYMatcher> matcher =
|
| - chrome_test_util::buttonWithAccessibilityLabel(label);
|
| + chrome_test_util::ButtonWithAccessibilityLabel(label);
|
| [[EarlGrey selectElementWithMatcher:matcher] performAction:grey_tap()];
|
| }
|
|
|
| // Taps the button with accessibility labelId |message_id|.
|
| void TapButtonWithLabelId(int message_id) {
|
| id<GREYMatcher> matcher =
|
| - chrome_test_util::buttonWithAccessibilityLabelId(message_id);
|
| + chrome_test_util::ButtonWithAccessibilityLabelId(message_id);
|
| [[EarlGrey selectElementWithMatcher:matcher] performAction:grey_tap()];
|
| }
|
|
|
|
|