summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/record_store_test_harness.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/storage/record_store_test_harness.cpp')
-rw-r--r--src/mongo/db/storage/record_store_test_harness.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/storage/record_store_test_harness.cpp b/src/mongo/db/storage/record_store_test_harness.cpp
index 6a72d25e954..b93e8029d34 100644
--- a/src/mongo/db/storage/record_store_test_harness.cpp
+++ b/src/mongo/db/storage/record_store_test_harness.cpp
@@ -75,7 +75,7 @@ TEST(RecordStoreTestHarness, Simple1) {
RecordData rd;
ASSERT(!rs->findRecord(opCtx.get(), RecordId(111, 17), &rd));
- ASSERT(rd.data() == NULL);
+ ASSERT(rd.data() == nullptr);
ASSERT(rs->findRecord(opCtx.get(), loc1, &rd));
ASSERT_EQUALS(s, rd.data());