summaryrefslogtreecommitdiff
path: root/jstests/core/maxscan.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/maxscan.js')
-rw-r--r--jstests/core/maxscan.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/jstests/core/maxscan.js b/jstests/core/maxscan.js
index 0c7e97488cf..ab490f51de0 100644
--- a/jstests/core/maxscan.js
+++ b/jstests/core/maxscan.js
@@ -7,12 +7,12 @@ for ( i=0; i<N; i++ ){
t.insert( { _id : i , x : i % 10 } );
}
-assert.eq( N , t.find().itcount() , "A" )
-assert.eq( 50 , t.find().maxScan(50).itcount() , "B" )
+assert.eq( N , t.find().itcount() , "A" );
+assert.eq( 50 , t.find().maxScan(50).itcount() , "B" );
-assert.eq( 10 , t.find( { x : 2 } ).itcount() , "C" )
-assert.eq( 5 , t.find( { x : 2 } ).maxScan(50).itcount() , "D" )
+assert.eq( 10 , t.find( { x : 2 } ).itcount() , "C" );
+assert.eq( 5 , t.find( { x : 2 } ).maxScan(50).itcount() , "D" );
t.ensureIndex({x: 1});
-assert.eq( 10, t.find( { x : 2 } ).hint({x:1}).maxScan(N).itcount() , "E" )
-assert.eq( 0, t.find( { x : 2 } ).hint({x:1}).maxScan(1).itcount() , "E" )
+assert.eq( 10, t.find( { x : 2 } ).hint({x:1}).maxScan(N).itcount() , "E" );
+assert.eq( 0, t.find( { x : 2 } ).hint({x:1}).maxScan(1).itcount() , "E" );