diff --git a/test/integration/component/test_tags.py b/test/integration/component/test_tags.py index 6ee5d3c6ea92..c8a077a032d6 100644 --- a/test/integration/component/test_tags.py +++ b/test/integration/component/test_tags.py @@ -3049,10 +3049,11 @@ def create_iso(self): self.cleanup.append(iso) self.debug("ISO created with ID: %s" % iso.id) - list_iso_response = Iso.list(self.apiclient, - id=iso.id) - - if not isinstance(list_iso_response, list): - raise unittest.SkipTest("Registered ISO can not be found/listed for tagging") + try: + iso.download(self.apiclient) + except Exception as e: + raise unittest.SkipTest( + "ISO download failed: %s" % e + ) return iso