summaryrefslogtreecommitdiff
path: root/jstests/sharding/geo_shardedgeonear.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/sharding/geo_shardedgeonear.js')
-rw-r--r--jstests/sharding/geo_shardedgeonear.js7
1 files changed, 1 insertions, 6 deletions
diff --git a/jstests/sharding/geo_shardedgeonear.js b/jstests/sharding/geo_shardedgeonear.js
index 54bda17cf16..123b4b174cc 100644
--- a/jstests/sharding/geo_shardedgeonear.js
+++ b/jstests/sharding/geo_shardedgeonear.js
@@ -39,12 +39,7 @@ function test(db, sharded, indexType) {
assert.commandWorked(db[coll].ensureIndex({loc: indexType}));
var queryPoint = [0, 0];
- geoCmd = {
- geoNear: coll,
- near: queryPoint,
- spherical: true,
- includeLocs: true
- };
+ geoCmd = {geoNear: coll, near: queryPoint, spherical: true, includeLocs: true};
assert.commandWorked(db.runCommand(geoCmd), tojson({sharded: sharded, indexType: indexType}));
}