summaryrefslogtreecommitdiff
path: root/jstests/noPassthroughWithMongod/benchrun_substitution.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/noPassthroughWithMongod/benchrun_substitution.js')
-rw-r--r--jstests/noPassthroughWithMongod/benchrun_substitution.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/noPassthroughWithMongod/benchrun_substitution.js b/jstests/noPassthroughWithMongod/benchrun_substitution.js
index b8562040e11..8d8eee3cc09 100644
--- a/jstests/noPassthroughWithMongod/benchrun_substitution.js
+++ b/jstests/noPassthroughWithMongod/benchrun_substitution.js
@@ -40,7 +40,7 @@ function benchrun_sub_update(use_write_command) {
}];
for (var i = 0; i < 100; ++i) {
- assert.writeOK(t.insert({x: i}));
+ assert.commandWorked(t.insert({x: i}));
}
res = benchRun({parallel: 1, seconds: 10, ops: ops, host: db.getMongo().host});
@@ -65,7 +65,7 @@ function benchrun_sub_remove(use_write_command) {
}];
for (var i = 0; i < 100; ++i) {
- assert.writeOK(t.insert({x: i}));
+ assert.commandWorked(t.insert({x: i}));
}
res = benchRun({parallel: 1, seconds: 10, ops: ops, host: db.getMongo().host});