Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4134)

Unified Diff: chrome/browser/chromeos/attestation/attestation_policy_observer_unittest.cc

Issue 14305009: Enhanced and refactored the AttestationFlow interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 3ba9c9a6b383864c30f32ad902e3a89d692b09da..e1e35384d2db433b9b3e42ede09adc70c77d86bb 100644
--- a/chrome/browser/chromeos/attestation/attestation_policy_observer_unittest.cc
+++ b/chrome/browser/chromeos/attestation/attestation_policy_observer_unittest.cc
@@ -101,8 +101,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();
}

Powered by Google App Engine
This is Rietveld 408576698