summaryrefslogtreecommitdiff
path: root/jstests/concurrency/fsm_workloads/agg_base.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/concurrency/fsm_workloads/agg_base.js')
-rw-r--r--jstests/concurrency/fsm_workloads/agg_base.js17
1 files changed, 7 insertions, 10 deletions
diff --git a/jstests/concurrency/fsm_workloads/agg_base.js b/jstests/concurrency/fsm_workloads/agg_base.js
index 846e6900215..9bc1be04785 100644
--- a/jstests/concurrency/fsm_workloads/agg_base.js
+++ b/jstests/concurrency/fsm_workloads/agg_base.js
@@ -45,9 +45,7 @@ var $config = (function() {
}
};
- var transitions = {
- query: {query: 1}
- };
+ var transitions = {query: {query: 1}};
function setup(db, collName, cluster) {
// load example data
@@ -55,13 +53,12 @@ var $config = (function() {
for (var i = 0; i < this.numDocs; ++i) {
// note: padDoc caches the large string after allocating it once, so it's ok to call it
// in this loop
- bulk.insert(padDoc(
- {
- flag: i % 2 ? true : false,
- rand: Random.rand(),
- randInt: Random.randInt(this.numDocs)
- },
- this.docSize));
+ bulk.insert(padDoc({
+ flag: i % 2 ? true : false,
+ rand: Random.rand(),
+ randInt: Random.randInt(this.numDocs)
+ },
+ this.docSize));
}
var res = bulk.execute();
assertWhenOwnColl.writeOK(res);