diff options
author | Michal Jagiello <michal.jagiello@t-mobile.pl> | 2020-11-25 10:52:03 +0000 |
---|---|---|
committer | Michal Jagiello <michal.jagiello@t-mobile.pl> | 2020-12-16 12:54:40 +0000 |
commit | af63861d32daac92cfaf1e00842fa23bc6ba7c6b (patch) | |
tree | 634460460c186c219ae1df50cf0e04bffd2384ff /src/onaptests/steps/onboard | |
parent | 6a19fe0a4bbf2319af52c34a21ceca88cadd84cd (diff) |
PNF macro instantiation
Issue-ID: TEST-280
Change-Id: I6d18b90c3f4c66ddf8c9a4ebe3de7182481e331f
Signed-off-by: Michal Jagiello <michal.jagiello@t-mobile.pl>
Diffstat (limited to 'src/onaptests/steps/onboard')
-rw-r--r-- | src/onaptests/steps/onboard/service.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/onaptests/steps/onboard/service.py b/src/onaptests/steps/onboard/service.py index 8ec9165..bc99169 100644 --- a/src/onaptests/steps/onboard/service.py +++ b/src/onaptests/steps/onboard/service.py @@ -133,7 +133,7 @@ class YamlTemplateServiceOnboardStep(YamlTemplateBaseStep): self.yaml_template[self.service_name]["instantiation_type"]) else: instantiation_type: ServiceInstantiationType = ServiceInstantiationType.A_LA_CARTE - service: Service = Service(name=settings.SERVICE_NAME, instantiation_type=instantiation_type) + service: Service = Service(name=self.service_name, instantiation_type=instantiation_type) service.create() self.declare_resources(service) self.assign_properties(service) |