summaryrefslogtreecommitdiff
path: root/jstests/core/geo_s2explain.js
diff options
context:
space:
mode:
authorJames Wahlin <james.wahlin@mongodb.com>2019-08-14 13:52:59 +0000
committerevergreen <evergreen@mongodb.com>2019-08-14 13:52:59 +0000
commit39c3a5d77b976e131d37476f2e7255d6058f5093 (patch)
tree01cc28719f215b17196ec913f475cd8efda9b37d /jstests/core/geo_s2explain.js
parent69d0dd1dc4fb1f78d21c47aa5dd82aa9077b69eb (diff)
downloadmongo-39c3a5d77b976e131d37476f2e7255d6058f5093.tar.gz
SERVER-42773 Replace uses of the assert.writeOK() Javascript assertion with assert.commandWorked()
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)