Index: chrome/browser/chromeos/attestation/attestation_policy_observer_unittest.cc |
diff --git a/chrome/browser/chromeos/attestation/attestation_policy_observer_unittest.cc b/chrome/browser/chromeos/attestation/attestation_policy_observer_unittest.cc |
index 37212c87ffad4331f0bb3691b3ab88ed09a03d3d..e5f4f6411ddf3adaf5e1f531a959074ec224c8dc 100644 |
--- a/chrome/browser/chromeos/attestation/attestation_policy_observer_unittest.cc |
+++ b/chrome/browser/chromeos/attestation/attestation_policy_observer_unittest.cc |
@@ -103,8 +103,8 @@ TEST_F(AttestationPolicyObserverTest, UnregisteredPolicyClient) { |
TEST_F(AttestationPolicyObserverTest, NewCertificate) { |
EXPECT_CALL(cryptohome_client_, TpmAttestationDoesKeyExist(_, _, _)) |
.WillOnce(WithArgs<2>(Invoke(DBusCallbackFalse))); |
- EXPECT_CALL(attestation_flow_, GetCertificate(_, _)) |
- .WillOnce(WithArgs<1>(Invoke(CertCallbackSuccess))); |
+ EXPECT_CALL(attestation_flow_, GetCertificate(_, _, _)) |
+ .WillOnce(WithArgs<2>(Invoke(CertCallbackSuccess))); |
Run(); |
} |