summaryrefslogtreecommitdiff
path: root/jstests/core/geo9.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/geo9.js')
-rw-r--r--jstests/core/geo9.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/jstests/core/geo9.js b/jstests/core/geo9.js
index 201bee7dfa5..7419615818e 100644
--- a/jstests/core/geo9.js
+++ b/jstests/core/geo9.js
@@ -15,9 +15,7 @@ t.ensureIndex({b: "2d"});
function check(field) {
var q = {};
- q[field] = {
- $near: [11, 11]
- };
+ q[field] = {$near: [11, 11]};
arr = t.find(q).limit(3).map(function(z) {
return Geo.distance([11, 11], z[field]);
});