diff options
Diffstat (limited to 'src/mongo/db/range_deleter_test.cpp')
-rw-r--r-- | src/mongo/db/range_deleter_test.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/db/range_deleter_test.cpp b/src/mongo/db/range_deleter_test.cpp index 501994e3495..633743c330a 100644 --- a/src/mongo/db/range_deleter_test.cpp +++ b/src/mongo/db/range_deleter_test.cpp @@ -65,7 +65,7 @@ public: return getGlobalServiceContext(); } OperationContext* getOpCtx() { - return _txn.get(); + return _opCtx.get(); } protected: @@ -82,12 +82,12 @@ private: stdx::make_unique<mongo::repl::ReplicationCoordinatorMock>(getServiceContext(), replSettings)); _client = getServiceContext()->makeClient("RangeDeleterTest"); - _txn = _client->makeOperationContext(); + _opCtx = _client->makeOperationContext(); deleter.startWorkers(); } ServiceContext::UniqueClient _client; - ServiceContext::UniqueOperationContext _txn; + ServiceContext::UniqueOperationContext _opCtx; }; using ImmediateDelete = RangeDeleterTest; |