diff options
author | 2023-05-26 14:08:55 +0000 | |
---|---|---|
committer | 2023-05-26 14:09:27 +0000 | |
commit | 1a5aca00bda57f243a6f0b434658d8528bbf6457 (patch) | |
tree | 5f0131986766621af1fbfbf952d2dec30cab0f6c /src/onaptests/steps/cloud | |
parent | b7d4808b153c8c7271d57d1fc3970f43368a7f07 (diff) |
Fix the order of cleanup of certain steps
Issue-ID: INT-2239
Signed-off-by: Lukasz Rajewski <lukasz.rajewski@t-mobile.pl>
Change-Id: I3f7d4d7921e031c4d69ab19862421aeaba4595eb
Diffstat (limited to 'src/onaptests/steps/cloud')
-rw-r--r-- | src/onaptests/steps/cloud/k8s_connectivity_info_create.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/onaptests/steps/cloud/k8s_connectivity_info_create.py b/src/onaptests/steps/cloud/k8s_connectivity_info_create.py index a492479..dfcda05 100644 --- a/src/onaptests/steps/cloud/k8s_connectivity_info_create.py +++ b/src/onaptests/steps/cloud/k8s_connectivity_info_create.py @@ -42,6 +42,6 @@ class K8SConnectivityInfoStep(BaseStep): def cleanup(self) -> None: """Cleanup K8S Connectivity information.""" self._logger.info("Clean the k8s connectivity information") - super().cleanup() connectinfo = ConnectivityInfo.get_connectivity_info_by_region_id(settings.CLOUD_REGION_ID) connectinfo.delete() + super().cleanup() |