summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Evans <jacob.evans@mongodb.com>2019-12-05 17:37:38 +0000
committerevergreen <evergreen@mongodb.com>2019-12-05 17:37:38 +0000
commit4817113e29f13af7a658a1a76ff6b962d8da1836 (patch)
tree4f7b6d81e7c7f5fc18a9de34069790197316c989
parent99fcc394f0ef5358b1c9d4881560442065591f22 (diff)
downloadmongo-4817113e29f13af7a658a1a76ff6b962d8da1836.tar.gz
SERVER-44963 Make or4.js safe for Parallel
-rw-r--r--jstests/core/or4.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/core/or4.js b/jstests/core/or4.js
index 73a5ddb825d..c682a2e34c9 100644
--- a/jstests/core/or4.js
+++ b/jstests/core/or4.js
@@ -72,7 +72,7 @@ assert.eq(5,
function(key, vals) {
return vals.length;
},
- {out: {inline: true}, query: {$or: [{a: 2}, {b: 3}]}})
+ {out: {inline: 1}, query: {$or: [{a: 2}, {b: 3}]}})
.counts.input);
coll.remove({});