summaryrefslogtreecommitdiff
path: root/jstests/concurrency/fsm_workloads/remove_multiple_documents.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/concurrency/fsm_workloads/remove_multiple_documents.js')
-rw-r--r--jstests/concurrency/fsm_workloads/remove_multiple_documents.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/jstests/concurrency/fsm_workloads/remove_multiple_documents.js b/jstests/concurrency/fsm_workloads/remove_multiple_documents.js
index 5370f999975..c349dc20874 100644
--- a/jstests/concurrency/fsm_workloads/remove_multiple_documents.js
+++ b/jstests/concurrency/fsm_workloads/remove_multiple_documents.js
@@ -13,7 +13,6 @@
* @tags: [assumes_balancer_off]
*/
var $config = (function() {
-
var states = {
init: function init(db, collName) {
this.numDocs = 200;
@@ -42,5 +41,4 @@ var $config = (function() {
var transitions = {init: {count: 1}, count: {remove: 1}, remove: {remove: 0.825, count: 0.125}};
return {threadCount: 10, iterations: 20, states: states, transitions: transitions};
-
})();