summaryrefslogtreecommitdiff
path: root/jstests/core/geo_exactfetch.js
diff options
context:
space:
mode:
authorJonathan Abrahams <jonathan@mongodb.com>2016-03-09 12:17:50 -0500
committerJonathan Abrahams <jonathan@mongodb.com>2016-03-09 12:18:14 -0500
commit4ae691e8edc87d0e3cfb633bb91c328426be007b (patch)
tree52079a593f54382ca13a2e741633eab1b6271893 /jstests/core/geo_exactfetch.js
parenta025d43f3ce2efc1fb1282a718f5d286fa0a4dc1 (diff)
downloadmongo-4ae691e8edc87d0e3cfb633bb91c328426be007b.tar.gz
SERVER-22468 Format JS code with approved style in jstests/
Diffstat (limited to 'jstests/core/geo_exactfetch.js')
-rw-r--r--jstests/core/geo_exactfetch.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/core/geo_exactfetch.js b/jstests/core/geo_exactfetch.js
index 43023897a4e..4af4032045f 100644
--- a/jstests/core/geo_exactfetch.js
+++ b/jstests/core/geo_exactfetch.js
@@ -10,8 +10,8 @@ function test(indexname) {
t.dropIndex({lon_lat: indexname, population: -1});
}
-t.insert({ city: "B", lon_lat: [-71.34895, 42.46037], population: 1000});
-t.insert({ city: "A", lon_lat: [1.48736, 42.55327], population: 100});
+t.insert({city: "B", lon_lat: [-71.34895, 42.46037], population: 1000});
+t.insert({city: "A", lon_lat: [1.48736, 42.55327], population: 100});
test("2d");
test("2dsphere");