summaryrefslogtreecommitdiff
path: root/jstests/core/capped_empty.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/capped_empty.js')
-rw-r--r--jstests/core/capped_empty.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/jstests/core/capped_empty.js b/jstests/core/capped_empty.js
index 5b0fb6b8f8e..02c6bef4e45 100644
--- a/jstests/core/capped_empty.js
+++ b/jstests/core/capped_empty.js
@@ -10,7 +10,6 @@ t.insert( { x : 3 } );
t.ensureIndex( { x : 1 } );
assert.eq( 3 , t.count() );
-assert.eq( 1 , t.find( { x : 2 } ).explain().nscanned );
t.runCommand( "emptycapped" );
@@ -21,4 +20,3 @@ t.insert( { x : 2 } );
t.insert( { x : 3 } );
assert.eq( 3 , t.count() );
-assert.eq( 1 , t.find( { x : 2 } ).explain().nscanned );