| Index: chrome/browser/ui/cocoa/passwords/confirmation_password_saved_view_controller_unittest.mm
|
| diff --git a/chrome/browser/ui/cocoa/passwords/confirmation_password_saved_view_controller_unittest.mm b/chrome/browser/ui/cocoa/passwords/confirmation_password_saved_view_controller_unittest.mm
|
| index e9ff521bc3ae9b76b8eb0b5cd47c3aeb09b97d95..79f0d3277fab22ebcb753b2403b19d89ea9e31b8 100644
|
| --- a/chrome/browser/ui/cocoa/passwords/confirmation_password_saved_view_controller_unittest.mm
|
| +++ b/chrome/browser/ui/cocoa/passwords/confirmation_password_saved_view_controller_unittest.mm
|
| @@ -44,7 +44,7 @@ TEST_F(ConfirmationPasswordSavedViewControllerTest,
|
|
|
| TEST_F(ConfirmationPasswordSavedViewControllerTest,
|
| ShouldOpenPasswordsAndDismissWhenLinkClicked) {
|
| - EXPECT_CALL(*ui_controller(), NavigateToPasswordManagerSettingsPage());
|
| + EXPECT_CALL(*ui_controller(), NavigateToPasswordManagerAccountDashboard());
|
| [controller().confirmationText clickedOnLink:@"about:blank" atIndex:0];
|
| EXPECT_TRUE([delegate() dismissed]);
|
| }
|
| @@ -52,7 +52,7 @@ TEST_F(ConfirmationPasswordSavedViewControllerTest,
|
| TEST_F(ConfirmationPasswordSavedViewControllerTest, CloseBubbleAndHandleClick) {
|
| // A user may press mouse down, some navigation closes the bubble, mouse up
|
| // still sends the action.
|
| - EXPECT_CALL(*ui_controller(), NavigateToPasswordManagerSettingsPage())
|
| + EXPECT_CALL(*ui_controller(), NavigateToPasswordManagerAccountDashboard())
|
| .Times(0);
|
| [delegate() setModel:nil];
|
| [controller().confirmationText clickedOnLink:@"about:blank" atIndex:0];
|
|
|