summaryrefslogtreecommitdiff
path: root/jstests/core/geo_s2holesameasshell.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/geo_s2holesameasshell.js')
-rw-r--r--jstests/core/geo_s2holesameasshell.js15
1 files changed, 3 insertions, 12 deletions
diff --git a/jstests/core/geo_s2holesameasshell.js b/jstests/core/geo_s2holesameasshell.js
index 29f00b88f7a..5407fe45c26 100644
--- a/jstests/core/geo_s2holesameasshell.js
+++ b/jstests/core/geo_s2holesameasshell.js
@@ -3,18 +3,9 @@ var t = db.geo_s2holessameasshell;
t.drop();
t.ensureIndex({geo: "2dsphere"});
-var centerPoint = {
- "type": "Point",
- "coordinates": [0.5, 0.5]
-};
-var edgePoint = {
- "type": "Point",
- "coordinates": [0, 0.5]
-};
-var cornerPoint = {
- "type": "Point",
- "coordinates": [0, 0]
-};
+var centerPoint = {"type": "Point", "coordinates": [0.5, 0.5]};
+var edgePoint = {"type": "Point", "coordinates": [0, 0.5]};
+var cornerPoint = {"type": "Point", "coordinates": [0, 0]};
// Various "edge" cases. None of them should be returned by the non-polygon
// polygon below.