summaryrefslogtreecommitdiff
path: root/jstests/concurrency/fsm_workloads/touch_index.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/concurrency/fsm_workloads/touch_index.js')
-rw-r--r--jstests/concurrency/fsm_workloads/touch_index.js18
1 files changed, 6 insertions, 12 deletions
diff --git a/jstests/concurrency/fsm_workloads/touch_index.js b/jstests/concurrency/fsm_workloads/touch_index.js
index cc0b6fcf48d..b4e47835073 100644
--- a/jstests/concurrency/fsm_workloads/touch_index.js
+++ b/jstests/concurrency/fsm_workloads/touch_index.js
@@ -10,16 +10,10 @@
load('jstests/concurrency/fsm_libs/extend_workload.js'); // for extendWorkload
load('jstests/concurrency/fsm_workloads/touch_base.js'); // for $config
-var $config =
- extendWorkload($config,
- function($config, $super) {
- $config.data.generateTouchCmdObj = function generateTouchCmdObj(collName) {
- return {
- touch: collName,
- data: false,
- index: true
- };
- };
+var $config = extendWorkload($config, function($config, $super) {
+ $config.data.generateTouchCmdObj = function generateTouchCmdObj(collName) {
+ return {touch: collName, data: false, index: true};
+ };
- return $config;
- });
+ return $config;
+});