| Index: chrome/test/data/webui/settings/reset_profile_banner_test.js
|
| diff --git a/chrome/test/data/webui/settings/reset_profile_banner_test.js b/chrome/test/data/webui/settings/reset_profile_banner_test.js
|
| index a01829a9b6e03f0c1b7db90c639d798a5aa5ddf8..18f15b274ec196bd3d88c3fdf114f8c2ff61b1f4 100644
|
| --- a/chrome/test/data/webui/settings/reset_profile_banner_test.js
|
| +++ b/chrome/test/data/webui/settings/reset_profile_banner_test.js
|
| @@ -20,9 +20,9 @@ suite('BannerTests', function() {
|
| // Tests that the reset profile banner navigates to the Reset profile dialog
|
| // URL when the "reset all settings" button is clicked.
|
| test('ResetBannerReset', function() {
|
| - assertNotEquals(settings.Route.RESET_DIALOG, settings.getCurrentRoute());
|
| + assertNotEquals(settings.routes.RESET_DIALOG, settings.getCurrentRoute());
|
| MockInteractions.tap(resetBanner.$.reset);
|
| - assertEquals(settings.Route.RESET_DIALOG, settings.getCurrentRoute());
|
| + assertEquals(settings.routes.RESET_DIALOG, settings.getCurrentRoute());
|
| assertFalse(resetBanner.$.dialog.open);
|
| });
|
|
|
|
|