summaryrefslogtreecommitdiff
path: root/jstests/aggregation/use_query_projection.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/aggregation/use_query_projection.js')
-rw-r--r--jstests/aggregation/use_query_projection.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/aggregation/use_query_projection.js b/jstests/aggregation/use_query_projection.js
index dccc24f58b9..ad83f06acb1 100644
--- a/jstests/aggregation/use_query_projection.js
+++ b/jstests/aggregation/use_query_projection.js
@@ -17,7 +17,7 @@ const bulk = coll.initializeUnorderedBulkOp();
for (let i = 0; i < 100; ++i) {
bulk.insert({_id: i, x: "string", a: -i, y: i % 2});
}
-assert.writeOK(bulk.execute());
+assert.commandWorked(bulk.execute());
function assertQueryCoversProjection({pipeline = [], pipelineOptimizedAway = true} = {}) {
const explainOutput = coll.explain().aggregate(pipeline);
@@ -107,7 +107,7 @@ assertQueryCoversProjection({
// Test that a multikey index will prevent a covered plan.
assert.commandWorked(coll.dropIndex({x: 1})); // Make sure there is only one plan considered.
-assert.writeOK(coll.insert({x: ["an", "array!"]}));
+assert.commandWorked(coll.insert({x: ["an", "array!"]}));
assertQueryDoesNotCoverProjection({
pipeline: [{$match: {x: "string"}}, {$project: {_id: 1, x: 1}}],
pipelineOptimizedAway: false