summaryrefslogtreecommitdiff
path: root/jstests/libs/override_methods/fail_unclean_shutdown_start_parallel_shell.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/libs/override_methods/fail_unclean_shutdown_start_parallel_shell.js')
-rw-r--r--jstests/libs/override_methods/fail_unclean_shutdown_start_parallel_shell.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/jstests/libs/override_methods/fail_unclean_shutdown_start_parallel_shell.js b/jstests/libs/override_methods/fail_unclean_shutdown_start_parallel_shell.js
index fabeff4915f..5a6b04a308b 100644
--- a/jstests/libs/override_methods/fail_unclean_shutdown_start_parallel_shell.js
+++ b/jstests/libs/override_methods/fail_unclean_shutdown_start_parallel_shell.js
@@ -3,10 +3,10 @@
* unclean shutdown and won't be restarted when the node is restarted.
*/
(function() {
- "use strict";
+"use strict";
- startParallelShell = function(jsCode, port, noConnect) {
- throw new Error("Cowardly fail if startParallelShell is run with a mongod that had" +
- " an unclean shutdown.");
- };
+startParallelShell = function(jsCode, port, noConnect) {
+ throw new Error("Cowardly fail if startParallelShell is run with a mongod that had" +
+ " an unclean shutdown.");
+};
})();