summaryrefslogtreecommitdiff
path: root/jstests/core/index_check3.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/index_check3.js')
-rw-r--r--jstests/core/index_check3.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/jstests/core/index_check3.js b/jstests/core/index_check3.js
index 2c07ae6d50a..7ffcc8da411 100644
--- a/jstests/core/index_check3.js
+++ b/jstests/core/index_check3.js
@@ -19,9 +19,7 @@ assert.eq(1, t.find({a: {$gt: 2}}).itcount(), "D");
t.drop();
for (var i = 0; i < 100; i++) {
- var o = {
- i: i
- };
+ var o = {i: i};
if (i % 2 == 0)
o.foo = i;
t.save(o);