summaryrefslogtreecommitdiff
path: root/jstests/core/geo_box2.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/geo_box2.js')
-rw-r--r--jstests/core/geo_box2.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/jstests/core/geo_box2.js b/jstests/core/geo_box2.js
index dd114ae5c2e..c20a1701874 100644
--- a/jstests/core/geo_box2.js
+++ b/jstests/core/geo_box2.js
@@ -1,7 +1,7 @@
t = db.geo_box2;
-t.drop()
+t.drop();
for (i=1; i<10; i++) {
for(j=1; j<10; j++) {
@@ -9,10 +9,10 @@ for (i=1; i<10; i++) {
}
}
-t.ensureIndex({"loc" : "2d"} )
+t.ensureIndex({"loc" : "2d"} );
assert.eq( 9 , t.find({loc : {$within : {$box : [[4,4],[6,6]]}}}).itcount() , "A1" );
-t.dropIndex( { "loc" : "2d" } )
+t.dropIndex( { "loc" : "2d" } );
-t.ensureIndex({"loc" : "2d"} , {"min" : 0, "max" : 10})
+t.ensureIndex({"loc" : "2d"} , {"min" : 0, "max" : 10});
assert.eq( 9 , t.find({loc : {$within : {$box : [[4,4],[6,6]]}}}).itcount() , "B1" );