diff options
author | Kaloian Manassiev <kaloian.manassiev@mongodb.com> | 2014-06-28 12:21:39 -0400 |
---|---|---|
committer | Kaloian Manassiev <kaloian.manassiev@mongodb.com> | 2014-06-28 12:21:39 -0400 |
commit | 89fcbab94c7103105e8c72f654a5774a066bdb90 (patch) | |
tree | 5dccab74eaf78f104c8bbbbb869eed0374ecd02b /src/mongo/dbtests/matchertests.cpp | |
parent | 52edab726185cbba1401cb46de221fb3d1cb0408 (diff) | |
download | mongo-89fcbab94c7103105e8c72f654a5774a066bdb90.tar.gz |
Revert "SERVER-13961 Add OperationContext argument to Client::Context"
This reverts commit 52edab726185cbba1401cb46de221fb3d1cb0408.
Diffstat (limited to 'src/mongo/dbtests/matchertests.cpp')
-rw-r--r-- | src/mongo/dbtests/matchertests.cpp | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/src/mongo/dbtests/matchertests.cpp b/src/mongo/dbtests/matchertests.cpp index cee3995395c..67bff7ef74b 100644 --- a/src/mongo/dbtests/matchertests.cpp +++ b/src/mongo/dbtests/matchertests.cpp @@ -41,19 +41,18 @@ namespace MatcherTests { class CollectionBase { public: - CollectionBase() : _ns( "unittests.matchertests" ) { - + CollectionBase() : + _ns( "unittests.matchertests" ) { } - virtual ~CollectionBase() { - OperationContextImpl txn; - DBDirectClient client(&txn); - - client.dropCollection(_ns); + client().dropCollection( ns() ); } - protected: + const char* ns() const { return _ns; } + DBDirectClient &client() { return _client; } + private: const char * const _ns; + DBDirectClient _client; }; template <typename M> |