Index: tools/json_schema_compiler/test/callbacks_unittest.cc |
diff --git a/tools/json_schema_compiler/test/callbacks_unittest.cc b/tools/json_schema_compiler/test/callbacks_unittest.cc |
index e69289eb522fcdd39c962bc2f4280f57e6382bc1..001e977bf07a74c1a75105bbe18972acdae2cdbd 100644 |
--- a/tools/json_schema_compiler/test/callbacks_unittest.cc |
+++ b/tools/json_schema_compiler/test/callbacks_unittest.cc |
@@ -30,7 +30,7 @@ TEST(JsonSchemaCompilerCallbacksTest, ReturnsMultipleResultCreate) { |
base::DictionaryValue* expected_dict = new base::DictionaryValue(); |
expected_dict->SetString("state", "foo"); |
base::ListValue expected; |
- expected.Append(base::Value::CreateIntegerValue(5)); |
+ expected.Append(new base::FundamentalValue(5)); |
expected.Append(expected_dict); |
EXPECT_TRUE(results->Equals(&expected)); |
} |