Index: chrome/browser/sync/profile_sync_service_unittest.cc |
diff --git a/chrome/browser/sync/profile_sync_service_unittest.cc b/chrome/browser/sync/profile_sync_service_unittest.cc |
index e5c3b94704fb8257f5b678bf3f1dc51de0e015e8..21fc4661e929306b4117c877eff70ca7ecf489e4 100644 |
--- a/chrome/browser/sync/profile_sync_service_unittest.cc |
+++ b/chrome/browser/sync/profile_sync_service_unittest.cc |
@@ -273,7 +273,7 @@ TEST_F(ProfileSyncServiceTest, JsControllerProcessJsMessageBasic) { |
StrictMock<syncer::MockJsReplyHandler> reply_handler; |
ListValue arg_list1; |
- arg_list1.Append(Value::CreateBooleanValue(false)); |
+ arg_list1.Append(Value::CreateStringValue("TRANSIENT_NOTIFICATION_ERROR")); |
syncer::JsArgList args1(&arg_list1); |
EXPECT_CALL(reply_handler, |
HandleJsReply("getNotificationState", HasArgs(args1))); |
@@ -297,7 +297,7 @@ TEST_F(ProfileSyncServiceTest, |
StrictMock<syncer::MockJsReplyHandler> reply_handler; |
ListValue arg_list1; |
- arg_list1.Append(Value::CreateBooleanValue(false)); |
+ arg_list1.Append(Value::CreateStringValue("TRANSIENT_NOTIFICATION_ERROR")); |
syncer::JsArgList args1(&arg_list1); |
EXPECT_CALL(reply_handler, |
HandleJsReply("getNotificationState", HasArgs(args1))); |