diff options
author | Benety Goh <benety@mongodb.com> | 2018-10-25 19:40:55 -0400 |
---|---|---|
committer | Benety Goh <benety@mongodb.com> | 2018-10-25 19:40:55 -0400 |
commit | 7d63b4cb968325aaea632fd14c10476dd9a6117e (patch) | |
tree | 690d19f0752b7c05f6dac7350591d708705dfa4a | |
parent | eaee7a35c4a56a604559daee396848e99ce5b287 (diff) | |
download | mongo-7d63b4cb968325aaea632fd14c10476dd9a6117e.tar.gz |
SERVER-37663 fix lint
-rw-r--r-- | buildscripts/resmokelib/testing/testcases/gennytest.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/buildscripts/resmokelib/testing/testcases/gennytest.py b/buildscripts/resmokelib/testing/testcases/gennytest.py index 6e99b5f250c..a5139f8841b 100644 --- a/buildscripts/resmokelib/testing/testcases/gennytest.py +++ b/buildscripts/resmokelib/testing/testcases/gennytest.py @@ -21,7 +21,7 @@ class GennyTestCase(interface.ProcessTestCase): interface.ProcessTestCase.__init__(self, logger, "Genny workload", genny_workload) self.genny_executable = utils.default_if_none(genny_executable, - config.DEFAULT_GENNY_EXECUTABLE) + config.DEFAULT_GENNY_EXECUTABLE) self.genny_options = utils.default_if_none(genny_options, {}).copy() self.genny_options["workload-file"] = genny_workload @@ -42,5 +42,4 @@ class GennyTestCase(interface.ProcessTestCase): self.genny_options.setdefault("metrics-output-file", output_file) def _make_process(self): - return core.programs.genny_program(self.logger, self.genny_executable, - **self.genny_options) + return core.programs.genny_program(self.logger, self.genny_executable, **self.genny_options) |