From 82ffd02664c6350509b321ed9be5b5abe90c1c48 Mon Sep 17 00:00:00 2001 From: Daan Hoogland Date: Fri, 26 Feb 2021 19:50:15 +0100 Subject: [PATCH] artifact tag removed --- test/integration/component/test_tags.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/integration/component/test_tags.py b/test/integration/component/test_tags.py index afcae180aee..9e3c8a42516 100644 --- a/test/integration/component/test_tags.py +++ b/test/integration/component/test_tags.py @@ -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')