summaryrefslogtreecommitdiff
path: root/jstests/noPassthrough/noncapped_oplog_creation.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/noPassthrough/noncapped_oplog_creation.js
parent69d0dd1dc4fb1f78d21c47aa5dd82aa9077b69eb (diff)
downloadmongo-39c3a5d77b976e131d37476f2e7255d6058f5093.tar.gz
SERVER-42773 Replace uses of the assert.writeOK() Javascript assertion with assert.commandWorked()
Diffstat (limited to 'jstests/noPassthrough/noncapped_oplog_creation.js')
-rw-r--r--jstests/noPassthrough/noncapped_oplog_creation.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/noPassthrough/noncapped_oplog_creation.js b/jstests/noPassthrough/noncapped_oplog_creation.js
index 577074e1bb9..9d2f0865fdb 100644
--- a/jstests/noPassthrough/noncapped_oplog_creation.js
+++ b/jstests/noPassthrough/noncapped_oplog_creation.js
@@ -28,7 +28,7 @@ assert.writeError(localDB.oplog.rs.insert({}));
assert.commandFailed(localDB.runCommand({godinsert: 'oplog.$main', obj: {}}));
// Test that creating a non-capped oplog collection fails when using $out.
-assert.writeOK(localDB.input.insert({}));
+assert.commandWorked(localDB.input.insert({}));
assert.commandFailed(localDB.runCommand({
aggregate: 'input',
pipeline: [{$out: 'oplog.aggregation'}],