summaryrefslogtreecommitdiff
path: root/jstests/core/geo_near_random2.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/geo_near_random2.js')
-rw-r--r--jstests/core/geo_near_random2.js19
1 files changed, 11 insertions, 8 deletions
diff --git a/jstests/core/geo_near_random2.js b/jstests/core/geo_near_random2.js
index af48c9d072e..0cbf374446d 100644
--- a/jstests/core/geo_near_random2.js
+++ b/jstests/core/geo_near_random2.js
@@ -5,15 +5,18 @@ var test = new GeoNearRandomTest("geo_near_random2");
test.insertPts(5000);
-// test.testPt() runs geoNear commands at the given coordinates with
-// limits from 1 to nPts(# of inserted points). At the nth run, it
-// compares the first (n - 1) results with the result of the (n - 1)th
+// test.testPt() runs geoNear commands at the given coordinates with
+// limits from 1 to nPts(# of inserted points). At the nth run, it
+// compares the first (n - 1) results with the result of the (n - 1)th
// run to make sure they are identical. It also makes sure that the
// distances are in increasing order. The test runs in O(N^2).
// Test $near with 2d index
-opts = {sphere: 0, nToTest: test.nPts*0.01};
-test.testPt([0,0], opts);
+opts = {
+ sphere: 0,
+ nToTest: test.nPts * 0.01
+};
+test.testPt([0, 0], opts);
test.testPt(test.mkPt(), opts);
test.testPt(test.mkPt(), opts);
test.testPt(test.mkPt(), opts);
@@ -22,8 +25,8 @@ test.testPt(test.mkPt(), opts);
opts.sphere = 1;
// Test $nearSphere with 2d index
-test.testPt([0,0], opts);
-// test.mkPt(0.8) generates a random point in the maximum
+test.testPt([0, 0], opts);
+// test.mkPt(0.8) generates a random point in the maximum
// lat long bounds scaled by 0.8
test.testPt(test.mkPt(0.8), opts);
test.testPt(test.mkPt(0.8), opts);
@@ -33,7 +36,7 @@ test.testPt(test.mkPt(0.8), opts);
// Test $nearSphere with 2dsphere index
assert.commandWorked(db.geo_near_random2.dropIndex({loc: '2d'}));
assert.commandWorked(db.geo_near_random2.ensureIndex({loc: '2dsphere'}));
-test.testPt([0,0], opts);
+test.testPt([0, 0], opts);
test.testPt(test.mkPt(0.8), opts);
test.testPt(test.mkPt(0.8), opts);
test.testPt(test.mkPt(0.8), opts);