summaryrefslogtreecommitdiff
path: root/jstests/concurrency/fsm_workloads/auth_create_user.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/concurrency/fsm_workloads/auth_create_user.js')
-rw-r--r--jstests/concurrency/fsm_workloads/auth_create_user.js4
1 files changed, 0 insertions, 4 deletions
diff --git a/jstests/concurrency/fsm_workloads/auth_create_user.js b/jstests/concurrency/fsm_workloads/auth_create_user.js
index 07fd1135032..2a703c78833 100644
--- a/jstests/concurrency/fsm_workloads/auth_create_user.js
+++ b/jstests/concurrency/fsm_workloads/auth_create_user.js
@@ -8,7 +8,6 @@
load('jstests/concurrency/fsm_workload_helpers/drop_utils.js'); // for dropUsers
var $config = (function() {
-
var data = {
// Use the workload name as a prefix for the username,
// since the workload name is assumed to be unique.
@@ -16,7 +15,6 @@ var $config = (function() {
};
var states = (function() {
-
function uniqueUsername(prefix, tid, num) {
return prefix + tid + '_' + num;
}
@@ -40,7 +38,6 @@ var $config = (function() {
}
return {init: init, createUser: createUser};
-
})();
var transitions = {init: {createUser: 1}, createUser: {createUser: 1}};
@@ -58,5 +55,4 @@ var $config = (function() {
transitions: transitions,
teardown: teardown
};
-
})();