summaryrefslogtreecommitdiff
path: root/jstests/core/geo_s2nongeoarray.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/geo_s2nongeoarray.js')
-rw-r--r--jstests/core/geo_s2nongeoarray.js6
1 files changed, 1 insertions, 5 deletions
diff --git a/jstests/core/geo_s2nongeoarray.js b/jstests/core/geo_s2nongeoarray.js
index 8684706d168..4b210f8f779 100644
--- a/jstests/core/geo_s2nongeoarray.js
+++ b/jstests/core/geo_s2nongeoarray.js
@@ -4,11 +4,7 @@ t = db.geo_s2nongeoarray;
oldPoint = [40, 5];
-var data = {
- geo: oldPoint,
- nonGeo: [123, 456],
- otherNonGeo: [{b: [1, 2]}, {b: [3, 4]}]
-};
+var data = {geo: oldPoint, nonGeo: [123, 456], otherNonGeo: [{b: [1, 2]}, {b: [3, 4]}]};
t.drop();
assert.writeOK(t.insert(data));