summaryrefslogtreecommitdiff
path: root/src/mongo/dbtests/dbhelper_tests.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/dbtests/dbhelper_tests.cpp')
-rw-r--r--src/mongo/dbtests/dbhelper_tests.cpp15
1 files changed, 6 insertions, 9 deletions
diff --git a/src/mongo/dbtests/dbhelper_tests.cpp b/src/mongo/dbtests/dbhelper_tests.cpp
index e0aeb507e36..88c04aece66 100644
--- a/src/mongo/dbtests/dbhelper_tests.cpp
+++ b/src/mongo/dbtests/dbhelper_tests.cpp
@@ -61,7 +61,7 @@ namespace mongo {
{
// Remove _id range [_min, _max).
Lock::DBWrite lk(txn.lockState(), ns);
- Client::Context ctx( ns );
+ Client::Context ctx(&txn, ns );
KeyRange range( ns,
BSON( "_id" << _min ),
@@ -115,9 +115,8 @@ namespace mongo {
//
TEST(DBHelperTests, FindDiskLocs) {
-
- DBDirectClient client;
OperationContextImpl txn;
+ DBDirectClient client(&txn);
// Some unique tag we can use to make sure we're pulling back the right data
OID tag = OID::gen();
@@ -170,9 +169,8 @@ namespace mongo {
//
TEST(DBHelperTests, FindDiskLocsNoIndex) {
-
- DBDirectClient client;
OperationContextImpl txn;
+ DBDirectClient client(&txn);
client.remove( ns, BSONObj() );
client.insert( ns, BSON( "_id" << OID::gen() ) );
@@ -184,7 +182,7 @@ namespace mongo {
long long estSizeBytes;
{
Lock::DBRead lk(txn.lockState(), ns);
- Client::Context ctx( ns );
+ Client::Context ctx(&txn, ns );
// search invalid index range
KeyRange range( ns,
@@ -212,9 +210,8 @@ namespace mongo {
//
TEST(DBHelperTests, FindDiskLocsTooBig) {
-
- DBDirectClient client;
OperationContextImpl txn;
+ DBDirectClient client(&txn);
client.remove( ns, BSONObj() );
@@ -231,7 +228,7 @@ namespace mongo {
long long estSizeBytes;
{
Lock::DBRead lk(txn.lockState(), ns);
- Client::Context ctx( ns );
+ Client::Context ctx(&txn, ns );
KeyRange range( ns,
BSON( "_id" << 0 ),
BSON( "_id" << numDocsInserted ),