summaryrefslogtreecommitdiff
path: root/jstests/noPassthrough/ttlMonitorSleepSecs_parameter.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/noPassthrough/ttlMonitorSleepSecs_parameter.js')
-rw-r--r--jstests/noPassthrough/ttlMonitorSleepSecs_parameter.js25
1 files changed, 13 insertions, 12 deletions
diff --git a/jstests/noPassthrough/ttlMonitorSleepSecs_parameter.js b/jstests/noPassthrough/ttlMonitorSleepSecs_parameter.js
index 93eaa49500e..7d5c3ea00d2 100644
--- a/jstests/noPassthrough/ttlMonitorSleepSecs_parameter.js
+++ b/jstests/noPassthrough/ttlMonitorSleepSecs_parameter.js
@@ -1,18 +1,19 @@
// Tests the ttlMonitorSleepSecs parameter
(function() {
- 'use strict';
+'use strict';
- load('jstests/noPassthrough/libs/server_parameter_helpers.js');
+load('jstests/noPassthrough/libs/server_parameter_helpers.js');
- testNumericServerParameter('ttlMonitorSleepSecs',
- true, // is Startup Param
- false, // is runtime param
- 60, // default value
- 30, // valid, non-default value
- true, // has lower bound
- 0, // out of bound value (below lower bound)
- false, // has upper bound
- 'unused' // out of bounds value (above upper bound)
- );
+testNumericServerParameter(
+ 'ttlMonitorSleepSecs',
+ true, // is Startup Param
+ false, // is runtime param
+ 60, // default value
+ 30, // valid, non-default value
+ true, // has lower bound
+ 0, // out of bound value (below lower bound)
+ false, // has upper bound
+ 'unused' // out of bounds value (above upper bound)
+);
})();