summaryrefslogtreecommitdiff
path: root/jstests/core/indexc.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/indexc.js')
-rw-r--r--jstests/core/indexc.js20
1 files changed, 10 insertions, 10 deletions
diff --git a/jstests/core/indexc.js b/jstests/core/indexc.js
index b099e2d2823..8a4591bbd9a 100644
--- a/jstests/core/indexc.js
+++ b/jstests/core/indexc.js
@@ -2,19 +2,19 @@
t = db.indexc;
t.drop();
-for ( var i=1; i<100; i++ ){
- var d = new Date( ( new Date() ).getTime() + i );
- t.save( { a : i , ts : d , cats : [ i , i + 1 , i + 2 ] } );
- if ( i == 51 )
+for (var i = 1; i < 100; i++) {
+ var d = new Date((new Date()).getTime() + i);
+ t.save({a: i, ts: d, cats: [i, i + 1, i + 2]});
+ if (i == 51)
mid = d;
}
-assert.eq( 50 , t.find( { ts : { $lt : mid } } ).itcount() , "A" );
-assert.eq( 50 , t.find( { ts : { $lt : mid } } ).sort( { ts : 1 } ).itcount() , "B" );
+assert.eq(50, t.find({ts: {$lt: mid}}).itcount(), "A");
+assert.eq(50, t.find({ts: {$lt: mid}}).sort({ts: 1}).itcount(), "B");
-t.ensureIndex( { ts : 1 , cats : 1 } );
-t.ensureIndex( { cats : 1 } );
+t.ensureIndex({ts: 1, cats: 1});
+t.ensureIndex({cats: 1});
// multi-key bug was firing here (related to getsetdup()):
-assert.eq( 50 , t.find( { ts : { $lt : mid } } ).itcount() , "C" );
-assert.eq( 50 , t.find( { ts : { $lt : mid } } ).sort( { ts : 1 } ).itcount() , "D" );
+assert.eq(50, t.find({ts: {$lt: mid}}).itcount(), "C");
+assert.eq(50, t.find({ts: {$lt: mid}}).sort({ts: 1}).itcount(), "D");