summaryrefslogtreecommitdiff
path: root/src/mongo/db/vector_clock_mongod_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/vector_clock_mongod_test.cpp')
-rw-r--r--src/mongo/db/vector_clock_mongod_test.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mongo/db/vector_clock_mongod_test.cpp b/src/mongo/db/vector_clock_mongod_test.cpp
index 6e07080d591..4e9d5ec63d7 100644
--- a/src/mongo/db/vector_clock_mongod_test.cpp
+++ b/src/mongo/db/vector_clock_mongod_test.cpp
@@ -295,17 +295,17 @@ TEST_F(VectorClockMongoDTest, PersistVectorClockDocument) {
PersistentTaskStore<VectorClockDocument> store(nss);
// Check that no vectorClockState document is present
- ASSERT_EQUALS(store.count(opCtx, VectorClock::kStateQuery()), 0);
+ ASSERT_EQUALS(store.count(opCtx, VectorClock::stateQuery()), 0);
// Persist and check that the vectorClockState document has been persisted
auto future = vc->persist(opCtx);
future.get();
- ASSERT_EQUALS(store.count(opCtx, VectorClock::kStateQuery()), 1);
+ ASSERT_EQUALS(store.count(opCtx, VectorClock::stateQuery()), 1);
// Check that the vectorClockState document is still one after more persist calls
future = vc->persist(opCtx);
vc->waitForInMemoryVectorClockToBePersisted(opCtx);
- ASSERT_EQUALS(store.count(opCtx, VectorClock::kStateQuery()), 1);
+ ASSERT_EQUALS(store.count(opCtx, VectorClock::stateQuery()), 1);
}
TEST_F(VectorClockMongoDTest, RecoverVectorClockDocument) {
@@ -351,7 +351,7 @@ TEST_F(VectorClockMongoDTest, RecoverNotExistingVectorClockDocument) {
PersistentTaskStore<VectorClockDocument> store(nss);
// Check that no recovery document is stored and call recovery
- int nDocuments = store.count(opCtx, VectorClock::kStateQuery());
+ int nDocuments = store.count(opCtx, VectorClock::stateQuery());
ASSERT_EQUALS(nDocuments, 0);
auto future = vc->recover(opCtx);