summaryrefslogtreecommitdiff
path: root/jstests/concurrency/fsm_workloads/auth_drop_user.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/concurrency/fsm_workloads/auth_drop_user.js')
-rw-r--r--jstests/concurrency/fsm_workloads/auth_drop_user.js18
1 files changed, 3 insertions, 15 deletions
diff --git a/jstests/concurrency/fsm_workloads/auth_drop_user.js b/jstests/concurrency/fsm_workloads/auth_drop_user.js
index 65cb8e41da2..a47d5566874 100644
--- a/jstests/concurrency/fsm_workloads/auth_drop_user.js
+++ b/jstests/concurrency/fsm_workloads/auth_drop_user.js
@@ -37,24 +37,12 @@ var $config = (function() {
assertAlways.isnull(db.getUser(username), "user '" + username + "' should not exist");
}
- return {
- init: init,
- createAndDropUser: createAndDropUser
- };
+ return {init: init, createAndDropUser: createAndDropUser};
})();
- var transitions = {
- init: {createAndDropUser: 1},
- createAndDropUser: {createAndDropUser: 1}
- };
+ var transitions = {init: {createAndDropUser: 1}, createAndDropUser: {createAndDropUser: 1}};
- return {
- threadCount: 10,
- iterations: 20,
- data: data,
- states: states,
- transitions: transitions
- };
+ return {threadCount: 10, iterations: 20, data: data, states: states, transitions: transitions};
})();