summaryrefslogtreecommitdiff
path: root/src/mongo/dbtests/counttests.cpp
diff options
context:
space:
mode:
authorDwight <dwight@10gen.com>2012-03-12 15:51:33 -0400
committerDwight <dwight@10gen.com>2012-03-12 15:51:33 -0400
commitc9297cd368688a4a844fe24a42bedca8fb20c5b7 (patch)
tree1058f57732ad7f83c5f819877f0a65aef8870721 /src/mongo/dbtests/counttests.cpp
parentd474d2b1d285aa8cf36c04eeadbda0687bc1c3fd (diff)
downloadmongo-c9297cd368688a4a844fe24a42bedca8fb20c5b7.tar.gz
SERVER-4328 merge in some test binary things. add some missing cpp files to the test vcxproj file
Diffstat (limited to 'src/mongo/dbtests/counttests.cpp')
-rw-r--r--src/mongo/dbtests/counttests.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/dbtests/counttests.cpp b/src/mongo/dbtests/counttests.cpp
index 0d2575f14e3..92c886868c9 100644
--- a/src/mongo/dbtests/counttests.cpp
+++ b/src/mongo/dbtests/counttests.cpp
@@ -26,10 +26,10 @@
namespace CountTests {
class Base {
- dblock lk;
+ Lock::DBWrite lk;
Client::Context _context;
public:
- Base() : _context( ns() ) {
+ Base() : lk(ns()), _context( ns() ) {
addIndex( fromjson( "{\"a\":1}" ) );
}
~Base() {