summaryrefslogtreecommitdiff
path: root/jstests/core/index_check6.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/index_check6.js')
-rw-r--r--jstests/core/index_check6.js14
1 files changed, 5 insertions, 9 deletions
diff --git a/jstests/core/index_check6.js b/jstests/core/index_check6.js
index 4baeced8fb9..e85913aeec3 100644
--- a/jstests/core/index_check6.js
+++ b/jstests/core/index_check6.js
@@ -30,10 +30,10 @@ assert.eq(29,
assert.eq(5,
keysExamined({age: {$gte: 29, $lte: 30}, rating: 5}, {age: 1, rating: 1}),
"C"); // SERVER-371
-assert.eq(7,
- keysExamined({age: {$gte: 29, $lte: 30}, rating: {$gte: 4, $lte: 5}},
- {age: 1, rating: 1}),
- "D"); // SERVER-371
+assert.eq(
+ 7,
+ keysExamined({age: {$gte: 29, $lte: 30}, rating: {$gte: 4, $lte: 5}}, {age: 1, rating: 1}),
+ "D"); // SERVER-371
assert.eq.automsg("2",
"t.find( { age:30, rating:{ $gte:4, $lte:5} } )" + ".explain('executionStats')" +
@@ -91,11 +91,7 @@ for (var a = -1; a <= 1; a += 2) {
for (var b = -1; b <= 1; b += 2) {
for (var c = -1; c <= 1; c += 2) {
t.dropIndexes();
- var spec = {
- a: a,
- b: b,
- c: c
- };
+ var spec = {a: a, b: b, c: c};
t.ensureIndex(spec);
doTest(spec, spec);
doTest({a: -a, b: -b, c: -c}, spec);