artifact tag removed

This commit is contained in:
Daan Hoogland 2021-02-26 19:50:15 +01:00
parent 64c453823a
commit 82ffd02664
1 changed files with 2 additions and 1 deletions

View File

@ -2990,7 +2990,7 @@ class TestResourceTags(cloudstackTestCase):
return
@attr(tags=["advanced", "basic", "bla"], required_hardware="false")
@attr(tags=["advanced", "basic"], required_hardware="false")
def test_33_duplicate_vm_tag(self):
"""
Test creation of a duplicate tag on UserVM and verify error return.
@ -3024,6 +3024,7 @@ class TestResourceTags(cloudstackTestCase):
)
except Exception as e:
# verify e.message
print(f"=== exception caught === {type(e)}")
strerror = ""
if hasattr(e,'message'):
strerror = e.__getattribute__('message')