diff options
author | Michal Jagiello <michal.jagiello@t-mobile.pl> | 2021-01-12 20:30:16 +0000 |
---|---|---|
committer | Michal Jagiello <michal.jagiello@t-mobile.pl> | 2021-01-12 20:39:04 +0000 |
commit | 1b5383b287358f97ecee424b3dc9432c519e1090 (patch) | |
tree | fb4c7d7fa1a3565c8d79eeff5710df741d94c886 /src/onaptests/steps/cloud | |
parent | d089e89005df1b4b3b6238a2937e23791c07d9ae (diff) |
Fix steps time measurement
Substeps execution time is not stored with the right time of step execution
Issue-ID: TEST-292
Signed-off-by: Michal Jagiello <michal.jagiello@t-mobile.pl>
Change-Id: I58e2aecb1f3cfb1a2bf78a438fc3d508ecf83cc1
Diffstat (limited to 'src/onaptests/steps/cloud')
-rw-r--r-- | src/onaptests/steps/cloud/customer_create.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/onaptests/steps/cloud/customer_create.py b/src/onaptests/steps/cloud/customer_create.py index b99fdb1..6c78d55 100644 --- a/src/onaptests/steps/cloud/customer_create.py +++ b/src/onaptests/steps/cloud/customer_create.py @@ -24,4 +24,5 @@ class CustomerCreateStep(BaseStep): Use settings values: - GLOBAL_CUSTOMER_ID. """ + super().execute() Customer.create(settings.GLOBAL_CUSTOMER_ID, settings.GLOBAL_CUSTOMER_ID, "INFRA") |