diff options
Diffstat (limited to 'src/onaptests/scenario')
-rw-r--r-- | src/onaptests/scenario/pnf_macro.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/onaptests/scenario/pnf_macro.py b/src/onaptests/scenario/pnf_macro.py index a045a37..fef8b83 100644 --- a/src/onaptests/scenario/pnf_macro.py +++ b/src/onaptests/scenario/pnf_macro.py @@ -1,4 +1,5 @@ """Instantiate service with PNF using SO macro flow.""" +import logging import time from yaml import load @@ -100,6 +101,8 @@ class PnfMacroScenarioStep(YamlTemplateBaseStep): class PnfMacro(testcase.TestCase): """Run PNF simulator and onboard then instantiate a service with PNF.""" + __logger = logging.getLogger(__name__) + def __init__(self, **kwargs): """Init Basic Network use case.""" if "case_name" not in kwargs: |