summaryrefslogtreecommitdiff
path: root/jstests/concurrency/fsm_workloads/server_status.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/concurrency/fsm_workloads/server_status.js')
-rw-r--r--jstests/concurrency/fsm_workloads/server_status.js14
1 files changed, 3 insertions, 11 deletions
diff --git a/jstests/concurrency/fsm_workloads/server_status.js b/jstests/concurrency/fsm_workloads/server_status.js
index dbde1420b99..fa3c8cbbeef 100644
--- a/jstests/concurrency/fsm_workloads/server_status.js
+++ b/jstests/concurrency/fsm_workloads/server_status.js
@@ -9,23 +9,15 @@ var $config = (function() {
var states = {
status: function status(db, collName) {
- var opts = {
- opcounterRepl: 1,
- oplog: 1,
- rangeDeleter: 1,
- repl: 1,
- security: 1,
- tcmalloc: 1
- };
+ var opts =
+ {opcounterRepl: 1, oplog: 1, rangeDeleter: 1, repl: 1, security: 1, tcmalloc: 1};
var res = db.serverStatus();
assertAlways.commandWorked(res);
assertAlways(res.hasOwnProperty('version'));
}
};
- var transitions = {
- status: {status: 1}
- };
+ var transitions = {status: {status: 1}};
return {
threadCount: 10,