summaryrefslogtreecommitdiff
path: root/jstests/core/find8.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/find8.js')
-rw-r--r--jstests/core/find8.js20
1 files changed, 10 insertions, 10 deletions
diff --git a/jstests/core/find8.js b/jstests/core/find8.js
index 3622eba8ae6..14930a056e7 100644
--- a/jstests/core/find8.js
+++ b/jstests/core/find8.js
@@ -3,21 +3,21 @@
t = db.jstests_find8;
t.drop();
-t.save( {a:[1,10]} );
-assert.eq( 1, t.count( { a: { $gt:2,$lt:5} } ) );
+t.save({a: [1, 10]});
+assert.eq(1, t.count({a: {$gt: 2, $lt: 5}}));
// Check that we can do a query with 'invalid' range.
-assert.eq( 1, t.count( { a: { $gt:5,$lt:2} } ) );
+assert.eq(1, t.count({a: {$gt: 5, $lt: 2}}));
-t.save( {a:[-1,12]} );
+t.save({a: [-1, 12]});
// Check that we can do a query with 'invalid' range and sort.
-assert.eq( 2, t.find( { a: { $gt:5,$lt:2} } ).sort( {a:1} ).itcount() );
-assert.eq( 2, t.find( { a: { $gt:5,$lt:2} } ).sort( {$natural:-1} ).itcount() );
+assert.eq(2, t.find({a: {$gt: 5, $lt: 2}}).sort({a: 1}).itcount());
+assert.eq(2, t.find({a: {$gt: 5, $lt: 2}}).sort({$natural: -1}).itcount());
// SERVER-2864
-if( 0 ) {
-t.find( { a: { $gt:5,$lt:2} } ).itcount();
-// Check that we can record a plan for an 'invalid' range.
-assert( t.find( { a: { $gt:5,$lt:2} } ).explain( true ).oldPlan );
+if (0) {
+ t.find({a: {$gt: 5, $lt: 2}}).itcount();
+ // Check that we can record a plan for an 'invalid' range.
+ assert(t.find({a: {$gt: 5, $lt: 2}}).explain(true).oldPlan);
}