summaryrefslogtreecommitdiff
path: root/buildscripts/resmokelib/testing/hooks/oplog.py
diff options
context:
space:
mode:
Diffstat (limited to 'buildscripts/resmokelib/testing/hooks/oplog.py')
-rw-r--r--buildscripts/resmokelib/testing/hooks/oplog.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/buildscripts/resmokelib/testing/hooks/oplog.py b/buildscripts/resmokelib/testing/hooks/oplog.py
index bb75b1bf501..225634ce084 100644
--- a/buildscripts/resmokelib/testing/hooks/oplog.py
+++ b/buildscripts/resmokelib/testing/hooks/oplog.py
@@ -14,12 +14,9 @@ class CheckReplOplogs(jsfile.JSHook):
"""
Checks that local.oplog.rs matches on the primary and secondaries.
"""
+
def __init__(self, hook_logger, fixture, shell_options=None):
description = "Check oplogs of all replica set members"
js_filename = os.path.join("jstests", "hooks", "run_check_repl_oplogs.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)