diff options
author | Michal Jagiello <michal.jagiello@t-mobile.pl> | 2021-10-22 13:46:26 +0000 |
---|---|---|
committer | Michal Jagiello <michal.jagiello@t-mobile.pl> | 2021-10-22 13:46:26 +0000 |
commit | ec14ad158ecd5489cc8169b23015c716f946e909 (patch) | |
tree | ee287d9da1cbd8028eafa39e72182cd13b012d5c | |
parent | c3ef82f489b915095b7464fb119daf43b84f67f8 (diff) |
[TEST] Fix multi_vnf_macro scenario.
Scenario class call itself in the __init__ so it cause the RecursionError
Issue-ID: TEST-358
Signed-off-by: Michal Jagiello <michal.jagiello@t-mobile.pl>
Change-Id: I12cbe4c03414f9f4c94587b450adf58646eda05e
-rw-r--r-- | src/onaptests/scenario/multi_vnf_macro.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/onaptests/scenario/multi_vnf_macro.py b/src/onaptests/scenario/multi_vnf_macro.py index 284baf0..404c785 100644 --- a/src/onaptests/scenario/multi_vnf_macro.py +++ b/src/onaptests/scenario/multi_vnf_macro.py @@ -114,7 +114,7 @@ class MultiVnfUbuntuMacro(testcase.TestCase): kwargs["case_name"] = 'nso_ubuntu_macro' super().__init__(**kwargs) self.__logger.debug("NSO Ubuntu macro init started") - self.test = MultiVnfUbuntuMacro(cleanup=settings.CLEANUP_FLAG) + self.test = MultiVnfUbuntuMacroStep(cleanup=settings.CLEANUP_FLAG) def run(self): """Run NSO Ubuntu macro test.""" |