| Index: chrome/test/data/webui/settings/reset_page_test.js
|
| diff --git a/chrome/test/data/webui/settings/reset_page_test.js b/chrome/test/data/webui/settings/reset_page_test.js
|
| index dd21beabcd7b2876978b0a6a4f27e7a0ccde89ed..7847384db4cb563d71837bf5c4bd7ef164daa4bd 100644
|
| --- a/chrome/test/data/webui/settings/reset_page_test.js
|
| +++ b/chrome/test/data/webui/settings/reset_page_test.js
|
| @@ -192,9 +192,9 @@ cr.define('settings_reset_page', function() {
|
| var dialog = resetPage.$$('settings-reset-profile-dialog');
|
| assertTrue(!!dialog);
|
|
|
| - var showReportedSettingsButton = dialog.$$('iron-icon');
|
| - assertTrue(!!showReportedSettingsButton);
|
| - MockInteractions.tap(showReportedSettingsButton);
|
| + var showReportedSettingsLink = dialog.$$('.footer a');
|
| + assertTrue(!!showReportedSettingsLink);
|
| + MockInteractions.tap(showReportedSettingsLink);
|
|
|
| return browserProxy.whenCalled('getReportedSettings').then(function() {
|
| MockInteractions.tap(dialog.$.reset);
|
|
|