Index: tests/StringTest.cpp |
diff --git a/tests/StringTest.cpp b/tests/StringTest.cpp |
index af21d861fe7d8d9d004a55744caacdcbcbb8ce97..595a0b194a93fe963e1cc56ce3ed6253d2794b3f 100644 |
--- a/tests/StringTest.cpp |
+++ b/tests/StringTest.cpp |
@@ -36,7 +36,7 @@ DEF_TEST(String, reporter) { |
SkString a; |
SkString b((size_t)0); |
SkString c(""); |
- SkString d(NULL, 0); |
+ SkString d(nullptr, 0); |
REPORTER_ASSERT(reporter, a.isEmpty()); |
REPORTER_ASSERT(reporter, a == b && a == c && a == d); |