summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Hirschhorn <max.hirschhorn@mongodb.com>2016-07-28 14:06:05 -0400
committerMax Hirschhorn <max.hirschhorn@mongodb.com>2016-07-28 14:06:05 -0400
commit0bdba80e81e55e115a9711e2892a53777247974e (patch)
treec89c1f6c0616c5864a5dbca5b95917460721ca9c
parent827432f14aae0c6a65f70d58749bd0f72c7c6999 (diff)
downloadmongo-0bdba80e81e55e115a9711e2892a53777247974e.tar.gz
SERVER-24693 Fix lint.
-rw-r--r--jstests/noPassthrough/yield_group.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/noPassthrough/yield_group.js b/jstests/noPassthrough/yield_group.js
index 4eb40623e19..91fd2d9b202 100644
--- a/jstests/noPassthrough/yield_group.js
+++ b/jstests/noPassthrough/yield_group.js
@@ -8,8 +8,8 @@
const worksPerYield = 50;
// Start a mongod that will yield every 50 work cycles.
- var conn =
- MongoRunner.runMongod({setParameter: `internalQueryExecYieldIterations=${worksPerYield}`});
+ var conn = MongoRunner.runMongod(
+ {setParameter: `internalQueryExecYieldIterations = ${worksPerYield}`});
assert.neq(null, conn, 'mongod was unable to start up');
var coll = conn.getDB('test').yield_group;