summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/kv/kv_engine_test_timestamps.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/storage/kv/kv_engine_test_timestamps.cpp')
-rw-r--r--src/mongo/db/storage/kv/kv_engine_test_timestamps.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mongo/db/storage/kv/kv_engine_test_timestamps.cpp b/src/mongo/db/storage/kv/kv_engine_test_timestamps.cpp
index 0e8384a4afe..d2c24f3b44e 100644
--- a/src/mongo/db/storage/kv/kv_engine_test_timestamps.cpp
+++ b/src/mongo/db/storage/kv/kv_engine_test_timestamps.cpp
@@ -35,7 +35,7 @@
#include "mongo/db/operation_context_noop.h"
#include "mongo/db/repl/read_concern_level.h"
#include "mongo/db/repl/replication_coordinator.h"
-#include "mongo/db/service_context_noop.h"
+#include "mongo/db/service_context_test_fixture.h"
#include "mongo/db/storage/kv/kv_engine.h"
#include "mongo/db/storage/record_store.h"
#include "mongo/db/storage/snapshot_manager.h"
@@ -46,7 +46,7 @@
namespace mongo {
namespace {
-class SnapshotManagerTests : public unittest::Test {
+class SnapshotManagerTests : public ServiceContextTest {
public:
/**
* Usable as an OperationContext* but owns both the Client and the OperationContext.
@@ -89,7 +89,8 @@ public:
};
Operation makeOperation() {
- return Operation(service.makeClient(""), helper->getEngine()->newRecoveryUnit());
+ return Operation(getServiceContext()->makeClient(""),
+ helper->getEngine()->newRecoveryUnit());
}
// Returns the timestamp before incrementing.
@@ -200,7 +201,6 @@ public:
ASSERT(rs);
}
- ServiceContextNoop service;
std::unique_ptr<KVHarnessHelper> helper;
KVEngine* engine;
SnapshotManager* snapshotManager;