summaryrefslogtreecommitdiff
path: root/src/mongo/dbtests/clienttests.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/dbtests/clienttests.cpp')
-rw-r--r--src/mongo/dbtests/clienttests.cpp13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/mongo/dbtests/clienttests.cpp b/src/mongo/dbtests/clienttests.cpp
index 194cc048046..e47e67ea4ea 100644
--- a/src/mongo/dbtests/clienttests.cpp
+++ b/src/mongo/dbtests/clienttests.cpp
@@ -1,5 +1,3 @@
-// client.cpp
-
/*
* Copyright (C) 2010 10gen Inc.
*
@@ -28,13 +26,16 @@
* then also delete it in the license file.
*/
+// client.cpp
+
+#include "mongo/pch.h"
+
#include "mongo/client/dbclientcursor.h"
#include "mongo/db/catalog/collection.h"
#include "mongo/db/catalog/database.h"
-#include "mongo/db/operation_context_noop.h"
+#include "mongo/db/d_concurrency.h"
#include "mongo/dbtests/dbtests.h"
-
namespace ClientTests {
class Base {
@@ -122,8 +123,8 @@ namespace ClientTests {
public:
BuildIndex() : Base("buildIndex") {}
void run() {
- OperationContextNoop txn;
- Client::WriteContext ctx(&txn, ns());
+ Lock::DBWrite lock(ns());
+ Client::WriteContext ctx(ns());
db.insert(ns(), BSON("x" << 1 << "y" << 2));
db.insert(ns(), BSON("x" << 2 << "y" << 2));