summaryrefslogtreecommitdiff
path: root/jstests/core/cursor6.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/cursor6.js')
-rw-r--r--jstests/core/cursor6.js9
1 files changed, 2 insertions, 7 deletions
diff --git a/jstests/core/cursor6.js b/jstests/core/cursor6.js
index f793d37bfe5..d373e952b2d 100644
--- a/jstests/core/cursor6.js
+++ b/jstests/core/cursor6.js
@@ -8,14 +8,9 @@ function eq(one, two) {
function check(indexed) {
var hint;
if (indexed) {
- hint = {
- a: 1,
- b: -1
- };
+ hint = {a: 1, b: -1};
} else {
- hint = {
- $natural: 1
- };
+ hint = {$natural: 1};
}
f = r.find().sort({a: 1, b: 1}).hint(hint);