summaryrefslogtreecommitdiff
path: root/jstests/concurrency/fsm_workloads/distinct_noindex.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/concurrency/fsm_workloads/distinct_noindex.js')
-rw-r--r--jstests/concurrency/fsm_workloads/distinct_noindex.js18
1 files changed, 3 insertions, 15 deletions
diff --git a/jstests/concurrency/fsm_workloads/distinct_noindex.js b/jstests/concurrency/fsm_workloads/distinct_noindex.js
index b55d1e58d3b..3727c968a14 100644
--- a/jstests/concurrency/fsm_workloads/distinct_noindex.js
+++ b/jstests/concurrency/fsm_workloads/distinct_noindex.js
@@ -35,24 +35,12 @@ var $config = (function() {
assertWhenOwnColl.eq(this.modulus, db[collName].distinct('i', {tid: this.tid}).length);
}
- return {
- init: init,
- distinct: distinct
- };
+ return {init: init, distinct: distinct};
})();
- var transitions = {
- init: {distinct: 1},
- distinct: {distinct: 1}
- };
+ var transitions = {init: {distinct: 1}, distinct: {distinct: 1}};
- return {
- data: data,
- threadCount: 10,
- iterations: 20,
- states: states,
- transitions: transitions
- };
+ return {data: data, threadCount: 10, iterations: 20, states: states, transitions: transitions};
})();