diff --git a/test/integration/component/test_asa1000v_fw.py b/test/integration/component/test_asa1000v_fw.py index 643fc1db28f..0d8cad09802 100644 --- a/test/integration/component/test_asa1000v_fw.py +++ b/test/integration/component/test_asa1000v_fw.py @@ -119,6 +119,7 @@ class TestASASetup(cloudstackTestCase): raise Exception("Warning: Exception during cleanup : %s" % e) return + @attr(tags=["device", "asa"]) def test_registerVnmc(self): Vnmc = VNMC.create(self.apiclient, self.services["vnmc"]["ipaddress"], self.services["vnmc"]["username"], self.services["vnmc"]["password"], self.physicalnetworks[0].id) self.debug("Cisco VNMC appliance with id %s deployed"%(Vnmc.id)) @@ -126,6 +127,7 @@ class TestASASetup(cloudstackTestCase): self.assertNotEqual(len(VnmcList), 0, "List VNMC API returned an empty response") Vnmc.delete(self.apiclient) + @attr(tags=["device", "asa"]) def test_registerAsa1000v(self): Asa = ASA1000V.create(self.apiclient, self.services["asa"]["ipaddress"], self.services["asa"]["insideportprofile"], self.clusters[0].id, self.physicalnetworks[0].id) self.debug("Cisco ASA 1000v appliance with id %s deployed"%(Asa.id))