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-11-08 17:30:17 +0000 |
commit | af9e6445e58ca90896ec19db773e7461523ce33c (patch) | |
tree | 844dec5ad11857f67c539aa3e4bffe0d68dc07d2 | |
parent | 46d3e9b16ae611246d73afaabcb4fa236fc19846 (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
(cherry picked from commit ec14ad158ecd5489cc8169b23015c716f946e909)
-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.""" |