Index: base/json/json_writer_unittest.cc |
diff --git a/base/json/json_writer_unittest.cc b/base/json/json_writer_unittest.cc |
index 6cb236fdc1e8fc8fb4ade9046f0a7ba732e6451f..de4ab616cd0bae0ab70e7cf9f649b8ea4f95f2dd 100644 |
--- a/base/json/json_writer_unittest.cc |
+++ b/base/json/json_writer_unittest.cc |
@@ -15,7 +15,7 @@ TEST(JSONWriterTest, BasicTypes) { |
std::string output_js; |
// Test null. |
- EXPECT_TRUE(JSONWriter::Write(*Value::CreateNullValue(), &output_js)); |
+ EXPECT_TRUE(JSONWriter::Write(Value(), &output_js)); |
EXPECT_EQ("null", output_js); |
// Test empty dict. |