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

Unified Diff: chrome/browser/chromeos/login/signed_settings_helper_unittest.cc

Issue 6821075: Chrome-side lockbox bindings (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: CL RC1. Created 9 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/login/signed_settings_helper_unittest.cc
diff --git a/chrome/browser/chromeos/login/signed_settings_helper_unittest.cc b/chrome/browser/chromeos/login/signed_settings_helper_unittest.cc
index 7badf483fa4e9faa023677f203306e218ae3c5de..0c2403ed4746eed64a99bbc2fdff0ce3457d03f3 100644
--- a/chrome/browser/chromeos/login/signed_settings_helper_unittest.cc
+++ b/chrome/browser/chromeos/login/signed_settings_helper_unittest.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -91,7 +91,7 @@ TEST_F(SignedSettingsHelperTest, SerializedOps) {
MockSignedSettingsHelperCallback cb;
ON_CALL(m_, GetStatus(_))
- .WillByDefault(Return(OwnershipService::OWNERSHIP_TAKEN));
+ .WillByDefault(Return(OwnershipService::OWNERSHIP_USER));
EXPECT_CALL(m_, GetStatus(_)).Times(2);
InSequence s;
EXPECT_CALL(m_, StartVerifyAttempt(_, _, _)).Times(1);
@@ -125,7 +125,7 @@ TEST_F(SignedSettingsHelperTest, CanceledOps) {
MockSignedSettingsHelperCallback cb;
ON_CALL(m_, GetStatus(_))
- .WillByDefault(Return(OwnershipService::OWNERSHIP_TAKEN));
+ .WillByDefault(Return(OwnershipService::OWNERSHIP_USER));
EXPECT_CALL(m_, GetStatus(_)).Times(2);
InSequence s;
EXPECT_CALL(m_, StartVerifyAttempt(_, _, _)).Times(1);

Powered by Google App Engine
This is Rietveld 408576698