diff options
-rw-r--r-- | sfc/tests/functest/run_sfc_tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sfc/tests/functest/run_sfc_tests.py b/sfc/tests/functest/run_sfc_tests.py index 1c1dc455..6fe211bf 100644 --- a/sfc/tests/functest/run_sfc_tests.py +++ b/sfc/tests/functest/run_sfc_tests.py @@ -29,8 +29,8 @@ COMMON_CONFIG = sfc_config.CommonConfig() class SfcFunctest(testcase.TestCase): - def __init__(self): - super(SfcFunctest, self).__init__() + def __init__(self, **kwargs): + super(SfcFunctest, self).__init__(**kwargs) self.cleanup_flag = True if '--nocleanup' in sys.argv: |