summaryrefslogtreecommitdiff
path: root/jstests/libs/geo_near_random.js
diff options
context:
space:
mode:
authorMike Grundy <michael.grundy@10gen.com>2016-02-04 12:29:33 -0500
committerMike Grundy <michael.grundy@10gen.com>2016-02-05 15:00:50 -0500
commit4fff5009ab22466f8780ce727b9fbf1992f0db62 (patch)
treeaad664d6a077b2845589b71c6d6d12dca499b235 /jstests/libs/geo_near_random.js
parentb56e96fdb89aa9f036901b9653bf900595c1956a (diff)
downloadmongo-4fff5009ab22466f8780ce727b9fbf1992f0db62.tar.gz
SERVER-22341 fix jslint errors in jstests/libs with eslint --fix
Diffstat (limited to 'jstests/libs/geo_near_random.js')
-rw-r--r--jstests/libs/geo_near_random.js28
1 files changed, 14 insertions, 14 deletions
diff --git a/jstests/libs/geo_near_random.js b/jstests/libs/geo_near_random.js
index 27590322b7a..fa2811e506d 100644
--- a/jstests/libs/geo_near_random.js
+++ b/jstests/libs/geo_near_random.js
@@ -8,7 +8,7 @@ GeoNearRandomTest = function(name) {
Random.srand(1234);
print("starting test: " + name);
-}
+};
GeoNearRandomTest.prototype.mkPt = function mkPt(scale, indexBounds){
@@ -23,7 +23,7 @@ GeoNearRandomTest.prototype.mkPt = function mkPt(scale, indexBounds){
return [( Random.rand() * (range - eps) + eps) + indexBounds.min, ( Random.rand() * (range - eps) + eps ) + indexBounds.min];
}
-}
+};
GeoNearRandomTest.prototype.insertPts = function(nPts, indexBounds, scale) {
assert.eq(this.nPts, 0, "insertPoints already called");
@@ -38,23 +38,23 @@ GeoNearRandomTest.prototype.insertPts = function(nPts, indexBounds, scale) {
if(!indexBounds)
this.t.ensureIndex({loc: '2d'});
else
- this.t.ensureIndex({loc: '2d'}, indexBounds)
-}
+ this.t.ensureIndex({loc: '2d'}, indexBounds);
+};
GeoNearRandomTest.prototype.assertIsPrefix = function(short, long) {
for (var i=0; i < short.length; i++){
- var xS = short[i].obj ? short[i].obj.loc[0] : short[i].loc[0]
- var yS = short[i].obj ? short[i].obj.loc[1] : short[i].loc[1]
- var dS = short[i].obj ? short[i].dis : 1
+ var xS = short[i].obj ? short[i].obj.loc[0] : short[i].loc[0];
+ var yS = short[i].obj ? short[i].obj.loc[1] : short[i].loc[1];
+ var dS = short[i].obj ? short[i].dis : 1;
- var xL = long[i].obj ? long[i].obj.loc[0] : long[i].loc[0]
- var yL = long[i].obj ? long[i].obj.loc[1] : long[i].loc[1]
- var dL = long[i].obj ? long[i].dis : 1
+ var xL = long[i].obj ? long[i].obj.loc[0] : long[i].loc[0];
+ var yL = long[i].obj ? long[i].obj.loc[1] : long[i].loc[1];
+ var dL = long[i].obj ? long[i].dis : 1;
assert.eq([xS, yS, dS], [xL, yL, dL]);
}
-}
+};
GeoNearRandomTest.prototype.testPt = function(pt, opts) {
assert.neq(this.nPts, 0, "insertPoints not yet called");
@@ -71,7 +71,7 @@ GeoNearRandomTest.prototype.testPt = function(pt, opts) {
var last = db.runCommand(cmd).results;
for (var i=2; i <= opts.nToTest; i++){
//print(i); // uncomment to watch status
- cmd.num = i
+ cmd.num = i;
var ret = db.runCommand(cmd).results;
try {
@@ -90,7 +90,7 @@ GeoNearRandomTest.prototype.testPt = function(pt, opts) {
if (!opts.sharded){
- last = last.map(function(x){return x.obj});
+ last = last.map(function(x){return x.obj;});
var query = {loc:{}};
query.loc[ opts.sphere ? '$nearSphere' : '$near' ] = pt;
@@ -99,6 +99,6 @@ GeoNearRandomTest.prototype.testPt = function(pt, opts) {
this.assertIsPrefix(last, near);
assert.eq(last, near);
}
-}
+};