diff options
author | Eliot Horowitz <eliot@10gen.com> | 2010-03-09 21:25:33 -0500 |
---|---|---|
committer | Eliot Horowitz <eliot@10gen.com> | 2010-03-09 21:25:33 -0500 |
commit | 9172d692cd57624902443e93c3b571734b97d23a (patch) | |
tree | 0193523a2f472195a70772a90f2b9fd6146c95bc /jstests | |
parent | bca88a8001e471b85af0787a39300d3ae2fa29f8 (diff) | |
download | mongo-9172d692cd57624902443e93c3b571734b97d23a.tar.gz |
turn tests back on for SERVER-631
Diffstat (limited to 'jstests')
-rw-r--r-- | jstests/update_arraymatch2.js | 1 |
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'] } ); |