summaryrefslogtreecommitdiff
path: root/jstests/core/geo_poly_line.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/geo_poly_line.js')
-rw-r--r--jstests/core/geo_poly_line.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/jstests/core/geo_poly_line.js b/jstests/core/geo_poly_line.js
index aca77b6ab0a..2b61d464b05 100644
--- a/jstests/core/geo_poly_line.js
+++ b/jstests/core/geo_poly_line.js
@@ -3,15 +3,15 @@
t = db.geo_polygon5;
t.drop();
-t.insert({loc:[0,0]})
-t.insert({loc:[1,0]})
-t.insert({loc:[2,0]})
-t.insert({loc:[3,0]})
-t.insert({loc:[4,0]})
+t.insert({loc:[0,0]});
+t.insert({loc:[1,0]});
+t.insert({loc:[2,0]});
+t.insert({loc:[3,0]});
+t.insert({loc:[4,0]});
t.ensureIndex( { loc : "2d" } );
-printjson( t.find({ loc: { "$within": { "$polygon" : [[0,0], [2,0], [4,0]] } } }).toArray() )
+printjson( t.find({ loc: { "$within": { "$polygon" : [[0,0], [2,0], [4,0]] } } }).toArray() );
-assert.eq( 5, t.find({ loc: { "$within": { "$polygon" : [[0,0], [2,0], [4,0]] } } }).itcount() )
+assert.eq( 5, t.find({ loc: { "$within": { "$polygon" : [[0,0], [2,0], [4,0]] } } }).itcount() );