Index: chrome/browser/chromeos/login/parallel_authenticator_unittest.cc |
diff --git a/chrome/browser/chromeos/login/parallel_authenticator_unittest.cc b/chrome/browser/chromeos/login/parallel_authenticator_unittest.cc |
index e1896f2d8a802122511390c734656a32e097287b..5f56e83bd0d42bf6e9ba43cc887b719f4972b36b 100644 |
--- a/chrome/browser/chromeos/login/parallel_authenticator_unittest.cc |
+++ b/chrome/browser/chromeos/login/parallel_authenticator_unittest.cc |
@@ -517,7 +517,7 @@ TEST_F(ParallelAuthenticatorTest, DriveDataRecover) { |
.Times(1) |
.RetiresOnSaturation(); |
EXPECT_CALL(*mock_cryptohome_library_, GetSystemSalt()) |
- .WillOnce(Return(std::string())) |
+ .WillOnce(Return(std::string("mock_system_salt"))) |
.RetiresOnSaturation(); |
state_->PresetOnlineLoginStatus(LoginFailure::LoginFailureNone()); |
@@ -538,7 +538,7 @@ TEST_F(ParallelAuthenticatorTest, DriveDataRecoverButFail) { |
.Times(1) |
.RetiresOnSaturation(); |
EXPECT_CALL(*mock_cryptohome_library_, GetSystemSalt()) |
- .WillOnce(Return(std::string())) |
+ .WillOnce(Return(std::string("mock_system_salt"))) |
.RetiresOnSaturation(); |
SetAttemptState(auth_.get(), state_.release()); |
@@ -649,7 +649,7 @@ TEST_F(ParallelAuthenticatorTest, DriveUnlock) { |
.Times(1) |
.RetiresOnSaturation(); |
EXPECT_CALL(*mock_cryptohome_library_, GetSystemSalt()) |
- .WillOnce(Return(std::string())) |
+ .WillOnce(Return(std::string("mock_system_salt"))) |
.RetiresOnSaturation(); |
auth_->AuthenticateToUnlock(UserContext(username_, |