Index: tools/gn/operators_unittest.cc |
diff --git a/tools/gn/operators_unittest.cc b/tools/gn/operators_unittest.cc |
index d2af8b13f3827f20cdab85e6aebb28bd48d68e04..b5b3b0201471895b5e055bf4c455150c7bef5678 100644 |
--- a/tools/gn/operators_unittest.cc |
+++ b/tools/gn/operators_unittest.cc |
@@ -39,7 +39,7 @@ TEST(Operators, SourcesAppend) { |
// Set up "sources" with an empty list. |
const char sources[] = "sources"; |
- setup.scope()->SetValue(sources, Value(NULL, Value::LIST), NULL); |
+ setup.scope()->SetValue(sources, Value(nullptr, Value::LIST), nullptr); |
// Set up the operator. |
BinaryOpNode node; |
@@ -102,7 +102,7 @@ TEST(Operators, ListAppend) { |
// Set up "foo" with an empty list. |
const char foo[] = "foo"; |
- setup.scope()->SetValue(foo, Value(NULL, Value::LIST), NULL); |
+ setup.scope()->SetValue(foo, Value(nullptr, Value::LIST), nullptr); |
// Set up the operator. |
BinaryOpNode node; |