summaryrefslogtreecommitdiff
path: root/jstests/core/find4.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/find4.js')
-rw-r--r--jstests/core/find4.js8
1 files changed, 5 insertions, 3 deletions
diff --git a/jstests/core/find4.js b/jstests/core/find4.js
index 7a5ebf79578..204e7c511e2 100644
--- a/jstests/core/find4.js
+++ b/jstests/core/find4.js
@@ -23,9 +23,11 @@ t.drop();
t.save({a: 1, b: 1});
t.save({a: 2, b: 2});
assert.eq("1-1,2-2",
- t.find().map(function(z) {
- return z.a + "-" + z.b;
- }).toString());
+ t.find()
+ .map(function(z) {
+ return z.a + "-" + z.b;
+ })
+ .toString());
assert.eq("1-undefined,2-undefined",
t.find({}, {a: 1})
.map(function(z) {