summaryrefslogtreecommitdiff
path: root/jstests/repl/repl6.js
diff options
context:
space:
mode:
authorAaron <aaron@10gen.com>2009-05-20 13:09:54 -0400
committerAaron <aaron@10gen.com>2009-05-20 13:09:54 -0400
commit04a735fe263cd7afd02be3d8ff6047e857172bd9 (patch)
tree7363a863081977bc9e6c8abf6dcaf8f4d13fe8c6 /jstests/repl/repl6.js
parent333dbae2725567a9111dc4e8f9b962d21f75d08b (diff)
downloadmongo-04a735fe263cd7afd02be3d8ff6047e857172bd9.tar.gz
debugging MINOR
Diffstat (limited to 'jstests/repl/repl6.js')
-rw-r--r--jstests/repl/repl6.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/jstests/repl/repl6.js b/jstests/repl/repl6.js
index 5c9c0db6de5..8447d698d92 100644
--- a/jstests/repl/repl6.js
+++ b/jstests/repl/repl6.js
@@ -4,10 +4,8 @@ var baseName = "jstests_repl6test";
soonCount = function( m, count ) {
assert.soon( function() {
- // print( "check count" );
- // print( "count: " + s.getDB( baseName ).z.find().count() );
return m.getDB( baseName ).a.find().count() == count;
- } );
+ }, "expected count: " + count + " from : " + m );
}
doTest = function( signal ) {