aboutsummaryrefslogtreecommitdiffstats
path: root/src/onaptests/steps/cloud/customer_service_subscription_create.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/onaptests/steps/cloud/customer_service_subscription_create.py')
-rw-r--r--src/onaptests/steps/cloud/customer_service_subscription_create.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/onaptests/steps/cloud/customer_service_subscription_create.py b/src/onaptests/steps/cloud/customer_service_subscription_create.py
index 67de141..533b2b8 100644
--- a/src/onaptests/steps/cloud/customer_service_subscription_create.py
+++ b/src/onaptests/steps/cloud/customer_service_subscription_create.py
@@ -9,14 +9,14 @@ from .customer_create import CustomerCreateStep
class CustomerServiceSubscriptionCreateStep(BaseStep):
"""Cutomer service subsription creation step"""
- def __init__(self, cleanup=False):
+ def __init__(self):
"""Initialize step.
Substeps:
- CustomerCreateStep.
"""
- super().__init__(cleanup=cleanup)
- self.add_step(CustomerCreateStep(cleanup=cleanup))
+ super().__init__(cleanup=BaseStep.HAS_NO_CLEANUP)
+ self.add_step(CustomerCreateStep())
@property
def description(self) -> str: