summaryrefslogtreecommitdiff
path: root/jstests/core/exists9.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/exists9.js')
-rw-r--r--jstests/core/exists9.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/jstests/core/exists9.js b/jstests/core/exists9.js
index 66378d1b424..75b09018797 100644
--- a/jstests/core/exists9.js
+++ b/jstests/core/exists9.js
@@ -25,7 +25,6 @@ assert.eq( 1, t.count( {a:{$exists:false}} ) );
t.ensureIndex( {a:1} );
assert.eq( 1, t.find( {a:{$exists:true}} ).hint( {a:1} ).itcount() );
assert.eq( 1, t.find( {a:{$exists:false}} ).hint( {a:1} ).itcount() );
-assert.eq( 1, t.find( {a:{$exists:false}} ).hint( {a:1} ).explain().nscanned );
t.drop();