summaryrefslogtreecommitdiff
path: root/jstests/core/return_key.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/return_key.js')
-rw-r--r--jstests/core/return_key.js11
1 files changed, 5 insertions, 6 deletions
diff --git a/jstests/core/return_key.js b/jstests/core/return_key.js
index b39764846d4..3692521f58c 100644
--- a/jstests/core/return_key.js
+++ b/jstests/core/return_key.js
@@ -73,10 +73,9 @@ load("jstests/libs/analyze_plan.js");
.sort({b: 1})
.returnKey()
.toArray();
- assert.eq(results,
- [
- {a: 3, c: {'': 1}, d: {'': 1}},
- {a: 2, c: {'': 2}, d: {'': 2}},
- {a: 1, c: {'': 3}, d: {'': 3}}
- ]);
+ assert.eq(results, [
+ {a: 3, c: {'': 1}, d: {'': 1}},
+ {a: 2, c: {'': 2}, d: {'': 2}},
+ {a: 1, c: {'': 3}, d: {'': 3}}
+ ]);
})();