| Index: chrome/browser/chromeos/login/existing_user_controller_browsertest.cc
|
| diff --git a/chrome/browser/chromeos/login/existing_user_controller_browsertest.cc b/chrome/browser/chromeos/login/existing_user_controller_browsertest.cc
|
| index 9566108f335e2168c4539d03ed31b47dfdbb643b..83a6aeadc85213cfff02a5757ce0322ca5c94a58 100644
|
| --- a/chrome/browser/chromeos/login/existing_user_controller_browsertest.cc
|
| +++ b/chrome/browser/chromeos/login/existing_user_controller_browsertest.cc
|
| @@ -668,8 +668,6 @@ IN_PROC_BROWSER_TEST_F(ExistingUserControllerPublicSessionTest,
|
| user_context.SetKey(Key(kPassword));
|
| user_context.SetUserIDHash(user_context.GetAccountId().GetUserEmail());
|
| ExpectSuccessfulLogin(user_context);
|
| - EXPECT_CALL(*mock_login_display_host_, OnCompleteLogin())
|
| - .Times(1);
|
|
|
| existing_user_controller()->OnSigninScreenReady();
|
| SetAutoLoginPolicy(kPublicSessionUserEmail, kAutoLoginLongDelay);
|
| @@ -796,7 +794,6 @@ class ExistingUserControllerActiveDirectoryTest
|
| void ExpectLoginSuccess() {
|
| EXPECT_CALL(*mock_login_display_, SetUIEnabled(false)).Times(2);
|
| EXPECT_CALL(*mock_login_display_, SetUIEnabled(true)).Times(1);
|
| - EXPECT_CALL(*mock_login_display_host_, OnCompleteLogin()).Times(1);
|
| }
|
| };
|
|
|
| @@ -837,7 +834,6 @@ IN_PROC_BROWSER_TEST_F(ExistingUserControllerActiveDirectoryTest,
|
| IN_PROC_BROWSER_TEST_F(ExistingUserControllerActiveDirectoryTest,
|
| GAIAAccountLogin_Failure) {
|
| ExpectLoginFailure();
|
| - EXPECT_CALL(*mock_login_display_host_, OnCompleteLogin()).Times(1);
|
| UserContext user_context(gaia_account_id_);
|
| user_context.SetKey(Key(kPassword));
|
| user_context.SetUserIDHash(gaia_account_id_.GetUserEmail());
|
|
|