summaryrefslogtreecommitdiff
path: root/jstests/core/geo_s2explain.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/geo_s2explain.js')
-rw-r--r--jstests/core/geo_s2explain.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/core/geo_s2explain.js b/jstests/core/geo_s2explain.js
index 97f45e89a68..6e6938e509a 100644
--- a/jstests/core/geo_s2explain.js
+++ b/jstests/core/geo_s2explain.js
@@ -6,7 +6,7 @@ t.drop();
var point1 = {loc: {type: "Point", coordinates: [10, 10]}};
var point2 = {loc: {type: "Point", coordinates: [10.001, 10]}};
-assert.writeOK(t.insert([point1, point2]));
+assert.commandWorked(t.insert([point1, point2]));
assert.commandWorked(t.ensureIndex({loc: "2dsphere"}));
@@ -23,7 +23,7 @@ for (var i = 10; i < 70; i += 0.1) {
points.push({loc: {type: "Point", coordinates: [i, i]}});
}
-assert.writeOK(t.insert(points));
+assert.commandWorked(t.insert(points));
explain = t.find({loc: {$nearSphere: {type: "Point", coordinates: [10, 10]}}})
.limit(10)