| Index: tools/json_schema_compiler/test/simple_api_unittest.cc
|
| diff --git a/tools/json_schema_compiler/test/simple_api_unittest.cc b/tools/json_schema_compiler/test/simple_api_unittest.cc
|
| index b79e3bc607ad3f5bfe0773a88c332099dcadcace..29d76373c8a18e15fbe17a8167e5f9be9019bfb9 100644
|
| --- a/tools/json_schema_compiler/test/simple_api_unittest.cc
|
| +++ b/tools/json_schema_compiler/test/simple_api_unittest.cc
|
| @@ -14,7 +14,7 @@ static std::unique_ptr<base::DictionaryValue> CreateTestTypeDictionary() {
|
| std::unique_ptr<base::DictionaryValue> value(new base::DictionaryValue());
|
| value->SetWithoutPathExpansion("number", new base::Value(1.1));
|
| value->SetWithoutPathExpansion("integer", new base::Value(4));
|
| - value->SetWithoutPathExpansion("string", new base::StringValue("bling"));
|
| + value->SetWithoutPathExpansion("string", new base::Value("bling"));
|
| value->SetWithoutPathExpansion("boolean", new base::Value(true));
|
| return value;
|
| }
|
|
|