summaryrefslogtreecommitdiff
path: root/jstests/core/geo_withinquery.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/geo_withinquery.js')
-rw-r--r--jstests/core/geo_withinquery.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/jstests/core/geo_withinquery.js b/jstests/core/geo_withinquery.js
index 11701d34c62..d60116c8838 100644
--- a/jstests/core/geo_withinquery.js
+++ b/jstests/core/geo_withinquery.js
@@ -5,11 +5,11 @@ t.drop();
num = 0;
for ( x=0; x<=20; x++ ){
for ( y=0; y<=20; y++ ){
- o = { _id : num++ , loc : [ x , y ] }
- t.save( o )
+ o = { _id : num++ , loc : [ x , y ] };
+ t.save( o );
}
}
assert.eq(21 * 21 - 1, t.find({ $and: [ {loc: {$ne:[0,0]}},
{loc: {$within: {$box: [[0,0], [100,100]]}}},
- ]}).itcount(), "UHOH!")
+ ]}).itcount(), "UHOH!");