diff options
Diffstat (limited to 'src/onaptests/steps/onboard/clamp.py')
-rw-r--r-- | src/onaptests/steps/onboard/clamp.py | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/onaptests/steps/onboard/clamp.py b/src/onaptests/steps/onboard/clamp.py index 7cb20ff..22783c6 100644 --- a/src/onaptests/steps/onboard/clamp.py +++ b/src/onaptests/steps/onboard/clamp.py @@ -58,21 +58,6 @@ class OnboardClampStep(YamlTemplateBaseStep): def model_yaml_template(self) -> dict: return {} - @property - def service_name(self) -> str: - """Service name. - - Get from YAML template if it's a root step, get from parent otherwise. - - Returns: - str: Service name - - """ - if self.is_root: - return next(iter(self.yaml_template.keys())) - else: - return self.parent.service_name - @YamlTemplateBaseStep.store_state def execute(self): """Onboard service.""" |