summaryrefslogtreecommitdiff
path: root/buildscripts/resmokelib/testing/hooks/validate.py
diff options
context:
space:
mode:
Diffstat (limited to 'buildscripts/resmokelib/testing/hooks/validate.py')
-rw-r--r--buildscripts/resmokelib/testing/hooks/validate.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/buildscripts/resmokelib/testing/hooks/validate.py b/buildscripts/resmokelib/testing/hooks/validate.py
index 66a5d6ec6db..24c9323342f 100644
--- a/buildscripts/resmokelib/testing/hooks/validate.py
+++ b/buildscripts/resmokelib/testing/hooks/validate.py
@@ -15,12 +15,9 @@ class ValidateCollections(jsfile.JSHook):
Runs full validation on all collections in all databases on every stand-alone
node, primary replica-set node, or primary shard node.
"""
+
def __init__(self, hook_logger, fixture, shell_options=None):
description = "Full collection validation"
js_filename = os.path.join("jstests", "hooks", "run_validate_collections.js")
- jsfile.JSHook.__init__(self,
- hook_logger,
- fixture,
- js_filename,
- description,
+ jsfile.JSHook.__init__(self, hook_logger, fixture, js_filename, description,
shell_options=shell_options)