summaryrefslogtreecommitdiff
path: root/jstests/concurrency/fsm_workloads/auth_drop_role.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/concurrency/fsm_workloads/auth_drop_role.js')
-rw-r--r--jstests/concurrency/fsm_workloads/auth_drop_role.js18
1 files changed, 3 insertions, 15 deletions
diff --git a/jstests/concurrency/fsm_workloads/auth_drop_role.js b/jstests/concurrency/fsm_workloads/auth_drop_role.js
index d41066dbc63..eba694ccd49 100644
--- a/jstests/concurrency/fsm_workloads/auth_drop_role.js
+++ b/jstests/concurrency/fsm_workloads/auth_drop_role.js
@@ -44,24 +44,12 @@ var $config = (function() {
assertAlways.isnull(db.getRole(roleName), "role '" + roleName + "' should not exist");
}
- return {
- init: init,
- createAndDropRole: createAndDropRole
- };
+ return {init: init, createAndDropRole: createAndDropRole};
})();
- var transitions = {
- init: {createAndDropRole: 1},
- createAndDropRole: {createAndDropRole: 1}
- };
+ var transitions = {init: {createAndDropRole: 1}, createAndDropRole: {createAndDropRole: 1}};
- return {
- threadCount: 10,
- iterations: 20,
- data: data,
- states: states,
- transitions: transitions
- };
+ return {threadCount: 10, iterations: 20, data: data, states: states, transitions: transitions};
})();