summaryrefslogtreecommitdiff
path: root/dbtests/jstests.cpp
diff options
context:
space:
mode:
authorDwight Merriman <dwight@10gen.com>2010-05-26 00:46:49 -0400
committerDwight Merriman <dwight@10gen.com>2010-05-26 00:46:49 -0400
commita190583c5180cca0f937b969e9959a1cddc19c5c (patch)
treed2d4dba88b6ad622bd32828c5e37cdaac37574d2 /dbtests/jstests.cpp
parenta6e5b141c2d0bfac88d22fdf9d3bafc85c95b523 (diff)
downloadmongo-a190583c5180cca0f937b969e9959a1cddc19c5c.tar.gz
MutexDebugger
Diffstat (limited to 'dbtests/jstests.cpp')
-rw-r--r--dbtests/jstests.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/dbtests/jstests.cpp b/dbtests/jstests.cpp
index 3a1d897550c..264561ae406 100644
--- a/dbtests/jstests.cpp
+++ b/dbtests/jstests.cpp
@@ -737,7 +737,8 @@ namespace JSTests {
{
BSONObj fromA = client.findOne( _a , BSONObj() );
- cout << "Froma : " << fromA << endl;
+ assert( fromA.valid() );
+ //cout << "Froma : " << fromA << endl;
BSONObjBuilder b;
b.append( "b" , 18 );
b.appendDBRef( "c" , "dbref.a" , fromA["_id"].__oid() );