From 1e51a3f2daa9e7ccca4af5cb752c3e10ddb8fc3a Mon Sep 17 00:00:00 2001 From: Michal Jagiello Date: Fri, 9 May 2025 11:48:19 +0200 Subject: [PATCH] Distribute service for macro service instantiation Use distribution step instead of onboard for instantitation Issue-ID: TEST-404 Signed-off-by: Michal Jagiello Change-Id: I8cbd8c6304662b957312e598212053b41d2b9e4a --- src/onaptests/steps/instantiate/service_macro.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/onaptests/steps/instantiate/service_macro.py b/src/onaptests/steps/instantiate/service_macro.py index d81a369..e074a5e 100644 --- a/src/onaptests/steps/instantiate/service_macro.py +++ b/src/onaptests/steps/instantiate/service_macro.py @@ -24,7 +24,7 @@ from onaptests.steps.cloud.customer_service_subscription_create import \ CustomerServiceSubscriptionCreateStep from onaptests.steps.instantiate.sdnc_service import TestSdncStep from onaptests.steps.onboard.service import (VerifyServiceDistributionStep, - YamlTemplateServiceOnboardStep) + YamlTemplateServiceDistributionStep) class YamlTemplateServiceMacroInstantiateBaseStep(YamlTemplateBaseStep): @@ -45,7 +45,7 @@ class YamlTemplateServiceMacroInstantiateBaseStep(YamlTemplateBaseStep): self._model_yaml_template: dict = None self._service_instance_name: str = None if not settings.ONLY_INSTANTIATE: - self.add_step(YamlTemplateServiceOnboardStep()) + self.add_step(YamlTemplateServiceDistributionStep()) if any( filter(lambda x: x in self.yaml_template[self.service_name].keys(), -- 2.16.6