diff --git a/test/integration/component/test_tags.py b/test/integration/component/test_tags.py index 46d1da66486..2a6e0764f21 100644 --- a/test/integration/component/test_tags.py +++ b/test/integration/component/test_tags.py @@ -1948,8 +1948,7 @@ class TestResourceTags(cloudstackTestCase): return - @unittest.skip("skipped - Need to enable this test after fixing TC issues") - @attr(tags=["advanced", "basic"]) + @attr(tags=["advanced", "basic", "simulator"]) def test_18_invalid_list_parameters(self): """ Test listAPI with invalid tags parameter """ @@ -1976,9 +1975,10 @@ class TestResourceTags(cloudstackTestCase): self.debug("Passing invalid key parameter to the listAPI for vms") vms = VirtualMachine.list(self.apiclient, - listall=True, - tags={'region111': 'India'} - ) + **{'tags[0].key': 'region111', + 'tags[0].value': 'India', + 'listall' : 'True'} + ) self.assertEqual( vms, None,