diff options
author | Michal Jagiello <michal.jagiello@t-mobile.pl> | 2021-12-20 07:25:45 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-12-20 07:25:45 +0000 |
commit | 2bd16f8898e6fd74e64b1500eb5fbc4448517d1a (patch) | |
tree | 6511af60374903774c8e0c2ed581bbcabce89e5b /src/onaptests/scenario/pnf_macro.py | |
parent | fdb23f5d0a2ac49ac35578be855f2b937741136f (diff) | |
parent | 54803e59a08d09bbb34cb686740f41b1e7bc3684 (diff) |
Merge "[TEST] Do not create simulators in "onap" namespace"
Diffstat (limited to 'src/onaptests/scenario/pnf_macro.py')
-rw-r--r-- | src/onaptests/scenario/pnf_macro.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/onaptests/scenario/pnf_macro.py b/src/onaptests/scenario/pnf_macro.py index 73a2adf..7b7c219 100644 --- a/src/onaptests/scenario/pnf_macro.py +++ b/src/onaptests/scenario/pnf_macro.py @@ -26,13 +26,13 @@ class PnfMacroScenarioStep(YamlTemplateBaseStep): super().__init__(cleanup=cleanup) self._yaml_template: dict = None self.add_step(PnfSimulatorCnfRegisterStep( - cleanup=settings.CLEANUP_FLAG + cleanup=cleanup )) self.add_step(CbaEnrichStep( - cleanup=settings.CLEANUP_FLAG + cleanup=cleanup )) self.add_step(YamlTemplateServiceMacroInstantiateStep( - cleanup=settings.CLEANUP_FLAG + cleanup=cleanup )) @property |