This is an automated email from the ASF dual-hosted git repository.
shwstppr pushed a commit to branch feature-purgedb-debug
in repository https://gitbox.apache.org/repos/asf/cloudstack.git
The following commit(s) were added to refs/heads/feature-purgedb-debug by this
push:
new 783b1ee5bea possible fix
783b1ee5bea is described below
commit 783b1ee5beabd8ff23eebcbf077f5940781f149a
Author: Abhishek Kumar <[email protected]>
AuthorDate: Tue Apr 30 18:39:31 2024 +0530
possible fix
Signed-off-by: Abhishek Kumar <[email protected]>
---
test/integration/smoke/test_purge_expunged_vms.py | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/test/integration/smoke/test_purge_expunged_vms.py
b/test/integration/smoke/test_purge_expunged_vms.py
index c760afa05e4..e0e6d58b71c 100644
--- a/test/integration/smoke/test_purge_expunged_vms.py
+++ b/test/integration/smoke/test_purge_expunged_vms.py
@@ -60,7 +60,9 @@ class TestPurgeExpungedVms(cloudstackTestCase):
# Get Zone, Domain and templates
cls.domain = get_domain(cls.apiclient)
- cls.zone = get_zone(cls.apiclient, testClient.getZoneForTests())
+ print(testClient.getZoneForTests())
+ cls.zone = get_zone(cls.apiclient)
+ print(cls.zone)
cls.services['mode'] = cls.zone.networktype
cls.mgtSvrDetails = cls.config.__dict__["mgtSvr"][0].__dict__