DaanHoogland commented on code in PR #13136:
URL: https://github.com/apache/cloudstack/pull/13136#discussion_r3302628423
##########
test/integration/smoke/test_deploy_vm_iso.py:
##########
@@ -129,16 +110,29 @@ def test_deploy_vm_from_iso(self):
domainid=self.account.domainid,
zoneid=self.zone.id
)
+ self.cleanup.append(self.iso)
+
+ self.debug("ISO created with ID: %s" % self.iso.id)
+
+ list_iso_response = Iso.list(
+ self.apiclient,
+ id=self.iso.id
+ )
+ self.assertEqual(
+ isinstance(list_iso_response, list),
+ True,
+ "Check list response returns a valid list"
+ )
Review Comment:
```suggestion
self.debug("ISO created with ID: %s" % self.iso.id)
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]