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.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/jstests/core/maxscan.js b/jstests/core/maxscan.js
index ab490f51de0..a862ed426a0 100644
--- a/jstests/core/maxscan.js
+++ b/jstests/core/maxscan.js
@@ -3,16 +3,16 @@ t = db.maxscan;
t.drop();
N = 100;
-for ( i=0; i<N; i++ ){
- t.insert( { _id : i , x : i % 10 } );
+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");