summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2010-03-09 21:25:33 -0500
committerEliot Horowitz <eliot@10gen.com>2010-03-09 21:25:33 -0500
commit9172d692cd57624902443e93c3b571734b97d23a (patch)
tree0193523a2f472195a70772a90f2b9fd6146c95bc
parentbca88a8001e471b85af0787a39300d3ae2fa29f8 (diff)
downloadmongo-9172d692cd57624902443e93c3b571734b97d23a.tar.gz
turn tests back on for SERVER-631
-rw-r--r--jstests/update_arraymatch2.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/jstests/update_arraymatch2.js b/jstests/update_arraymatch2.js
index 45c24c05a4b..7eb810bc4eb 100644
--- a/jstests/update_arraymatch2.js
+++ b/jstests/update_arraymatch2.js
@@ -9,7 +9,6 @@ assert( t.findOne({x:1}).x[1] == 3, "A1" );
t.insert( { x : { y : [8,7,6] } } )
t.update( {'x.y' : 7}, { $inc : { "x.y.$" : 1 } } , false, true )
-//printjson( t.findOne({"x.y" : 8}) );
assert.eq( 8 , t.findOne({"x.y" : 8}).x.y[1] , "B1" );
t.insert( { x : [90,91,92], y : ['a', 'b', 'c'] } );