summaryrefslogtreecommitdiff
path: root/jstests/concurrency/fsm_workloads/findAndModify_remove_queue_unindexed.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/concurrency/fsm_workloads/findAndModify_remove_queue_unindexed.js')
-rw-r--r--jstests/concurrency/fsm_workloads/findAndModify_remove_queue_unindexed.js19
1 files changed, 9 insertions, 10 deletions
diff --git a/jstests/concurrency/fsm_workloads/findAndModify_remove_queue_unindexed.js b/jstests/concurrency/fsm_workloads/findAndModify_remove_queue_unindexed.js
index 80ce7567a7d..387c5467f04 100644
--- a/jstests/concurrency/fsm_workloads/findAndModify_remove_queue_unindexed.js
+++ b/jstests/concurrency/fsm_workloads/findAndModify_remove_queue_unindexed.js
@@ -16,16 +16,15 @@
load('jstests/concurrency/fsm_libs/extend_workload.js'); // for extendWorkload
load('jstests/concurrency/fsm_workloads/findAndModify_remove_queue.js'); // for $config
-var $config = extendWorkload($config,
- function($config, $super) {
+var $config = extendWorkload($config, function($config, $super) {
- // Use the workload name as the database name, since the workload
- // name is assumed to be unique.
- $config.data.uniqueDBName = 'findAndModify_remove_queue_unindexed';
+ // Use the workload name as the database name, since the workload
+ // name is assumed to be unique.
+ $config.data.uniqueDBName = 'findAndModify_remove_queue_unindexed';
- $config.data.getIndexSpecs = function getIndexSpecs() {
- return [];
- };
+ $config.data.getIndexSpecs = function getIndexSpecs() {
+ return [];
+ };
- return $config;
- });
+ return $config;
+});