aboutsummaryrefslogtreecommitdiffstats
path: root/src/onaptests/scenario/basic_vm_macro.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/onaptests/scenario/basic_vm_macro.py')
-rw-r--r--src/onaptests/scenario/basic_vm_macro.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/onaptests/scenario/basic_vm_macro.py b/src/onaptests/scenario/basic_vm_macro.py
index 67dded9..8bbf0b7 100644
--- a/src/onaptests/scenario/basic_vm_macro.py
+++ b/src/onaptests/scenario/basic_vm_macro.py
@@ -25,10 +25,10 @@ class BasicVmMacroStep(YamlTemplateBaseStep):
super().__init__(cleanup=cleanup)
self._yaml_template: dict = None
self.add_step(CbaPublishStep(
- cleanup=settings.CLEANUP_FLAG
+ cleanup=cleanup
))
self.add_step(YamlTemplateServiceMacroInstantiateStep(
- cleanup=settings.CLEANUP_FLAG
+ cleanup=cleanup
))
@property
@@ -101,7 +101,7 @@ class BasicVmMacroStep(YamlTemplateBaseStep):
class BasicVmMacro(testcase.TestCase):
"""Instantiate a basic vm macro."""
- __logger = logging.getLogger(__name__)
+ __logger = logging.getLogger()
def __init__(self, **kwargs):
"""Init Basic Macro use case."""