summaryrefslogtreecommitdiff
path: root/jstests/arrayfind1.js
diff options
context:
space:
mode:
authorAaron <aaron@10gen.com>2010-02-23 22:49:50 -0800
committerAaron <aaron@10gen.com>2010-02-23 22:49:50 -0800
commitc0e6f059435869604765b4059e6188c9e5b2a357 (patch)
tree8c44b82dd246cb5e7a8082ac0a8bf5a507caa583 /jstests/arrayfind1.js
parente828661d89f51d594faac4cee7f6573b964d9e33 (diff)
downloadmongo-c0e6f059435869604765b4059e6188c9e5b2a357.tar.gz
Revert "SERVER-660 debug"
This reverts commit 439a43f876e40f357c2d263c3775a80e65e09cdf.
Diffstat (limited to 'jstests/arrayfind1.js')
-rw-r--r--jstests/arrayfind1.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/jstests/arrayfind1.js b/jstests/arrayfind1.js
index 819c574187c..900a7e1f345 100644
--- a/jstests/arrayfind1.js
+++ b/jstests/arrayfind1.js
@@ -36,6 +36,5 @@ res = t.find( { "a" : { $elemMatch : { x : { $gt : 2 } } } } ).explain()
assert( res.cursor.indexOf( "BtreeC" ) == 0 , "C1" );
assert.eq( 2 , t.find( { a : { $elemMatch : { x : { $gt : 2 } } } } ).count() , "D2" );
-printjson( t.find( { a : { $ne:2, $elemMatch : { x : { $gt : 2 } } } } ).explain() );
assert.eq( 2 , t.find( { a : { $ne:2, $elemMatch : { x : { $gt : 2 } } } } ).count() , "E1" );
assert( t.find( { a : { $ne:2, $elemMatch : { x : { $gt : 2 } } } } ).explain().cursor.indexOf( "BtreeC" ) == 0 , "E2" );