diff options
author | Michal Jagiello <michal.jagiello@t-mobile.pl> | 2021-01-25 12:00:25 +0000 |
---|---|---|
committer | Michal Jagiello <michal.jagiello@t-mobile.pl> | 2021-01-25 14:40:39 +0000 |
commit | 5021508f4b6f8bf2bb6ef890b4bb960dc144484b (patch) | |
tree | 2451b62511bb2de23d0515684bf6555717100321 /src/onaptests/scenario | |
parent | 511400315961caba0aa7b96d1ecf6aa2c912b4c4 (diff) |
PNF simulator CNF instantiation and registation steps
Use CNF of PNF simulator in pnf_macro scenario
Issue-ID: INT-1822
Signed-off-by: Michal Jagiello <michal.jagiello@t-mobile.pl>
Change-Id: Id7f70b45219a36b7fc70921a1438b0cbe57a1756
Diffstat (limited to 'src/onaptests/scenario')
-rw-r--r-- | src/onaptests/scenario/pnf_macro.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/onaptests/scenario/pnf_macro.py b/src/onaptests/scenario/pnf_macro.py index b02fadf..baa44b4 100644 --- a/src/onaptests/scenario/pnf_macro.py +++ b/src/onaptests/scenario/pnf_macro.py @@ -6,7 +6,7 @@ from onapsdk.configuration import settings from onaptests.steps.base import YamlTemplateBaseStep from onaptests.steps.onboard.cds import CbaEnrichStep -from onaptests.steps.simulator.pnf.pnf_register import PNFRegisterStep +from onaptests.steps.simulator.pnf_simulator_cnf.pnf_register import PnfSimulatorCnfRegisterStep from onaptests.steps.instantiate.service_macro import YamlTemplateServiceMacroInstantiateStep @@ -21,7 +21,7 @@ class PnfMacroScenarioStep(YamlTemplateBaseStep): """ super().__init__(cleanup=cleanup) self._yaml_template: dict = None - self.add_step(PNFRegisterStep( + self.add_step(PnfSimulatorCnfRegisterStep( cleanup=settings.CLEANUP_FLAG )) self.add_step(CbaEnrichStep( |