diff options
Diffstat (limited to 'buildscripts/resmokelib/testing/testcases/cpp_unittest.py')
-rw-r--r-- | buildscripts/resmokelib/testing/testcases/cpp_unittest.py | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/buildscripts/resmokelib/testing/testcases/cpp_unittest.py b/buildscripts/resmokelib/testing/testcases/cpp_unittest.py index b287db64057..96f20796911 100644 --- a/buildscripts/resmokelib/testing/testcases/cpp_unittest.py +++ b/buildscripts/resmokelib/testing/testcases/cpp_unittest.py @@ -16,10 +16,7 @@ class CPPUnitTestCase(interface.ProcessTestCase): REGISTERED_NAME = "cpp_unit_test" - def __init__(self, - logger, - program_executable, - program_options=None): + def __init__(self, logger, program_executable, program_options=None): """ Initializes the CPPUnitTestCase with the executable to run. """ @@ -30,6 +27,4 @@ class CPPUnitTestCase(interface.ProcessTestCase): self.program_options = utils.default_if_none(program_options, {}).copy() def _make_process(self): - return core.process.Process(self.logger, - [self.program_executable], - **self.program_options) + return core.process.Process(self.logger, [self.program_executable], **self.program_options) |