From ec14ad158ecd5489cc8169b23015c716f946e909 Mon Sep 17 00:00:00 2001 From: Michal Jagiello Date: Fri, 22 Oct 2021 13:46:26 +0000 Subject: [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 Change-Id: I12cbe4c03414f9f4c94587b450adf58646eda05e --- src/onaptests/scenario/multi_vnf_macro.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/onaptests/scenario/multi_vnf_macro.py') 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.""" -- cgit 1.2.3-korg