aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/StringTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/StringTest.cpp')
-rw-r--r--tests/StringTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/StringTest.cpp b/tests/StringTest.cpp
index af21d861fe..595a0b194a 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);