diff --git a/vmware_nsx_tempest/tests/nsxv3/api/test_nsx_security_groups.py b/vmware_nsx_tempest/tests/nsxv3/api/test_nsx_security_groups.py index c50461c824..508f2ec0b0 100644 --- a/vmware_nsx_tempest/tests/nsxv3/api/test_nsx_security_groups.py +++ b/vmware_nsx_tempest/tests/nsxv3/api/test_nsx_security_groups.py @@ -21,7 +21,6 @@ import time from tempest.api.network import base_security_groups as base from tempest import config from tempest.lib.common.utils import data_utils -from tempest.lib import decorators from tempest import test from vmware_nsx_tempest._i18n import _LI @@ -86,7 +85,6 @@ class NSXv3SecGroupTest(base.BaseSecGroupTest): "rule does not match with %s." % (key, value)) - @decorators.skip_because(bug="1617528") @test.attr(type='nsxv3') @test.idempotent_id('904ca2c1-a14d-448b-b723-a7366e613bf1') def test_create_update_nsx_security_group(self): @@ -126,7 +124,6 @@ class NSXv3SecGroupTest(base.BaseSecGroupTest): self.assertIsNotNone(nsx_dfw_section, "Firewall section %s is not updated!") - @decorators.skip_because(bug="1617528") @test.attr(type='nsxv3') @test.idempotent_id('e637cc59-c5e6-49b5-a539-e517e780656e') def test_delete_nsx_security_group(self): @@ -148,7 +145,6 @@ class NSXv3SecGroupTest(base.BaseSecGroupTest): self.assertIsNone(nsx_nsgroup) self.assertIsNone(nsx_dfw_section) - @decorators.skip_because(bug="1617528") @test.attr(type='nsxv3') @test.idempotent_id('91c298c0-fbbd-4597-b4c6-1a7ecfb8a2de') def test_create_nsx_security_group_rule(self): @@ -209,7 +205,6 @@ class NSXv3SecGroupTest(base.BaseSecGroupTest): self.assertEqual(value, nsx_dfw_rule[key], "%s does not match." % key) - @decorators.skip_because(bug="1617528") @test.attr(type='nsxv3') @test.idempotent_id('b6c424e5-3553-4b7d-bd95-8b1f0a860fb4') def test_delete_nsx_security_group_rule(self):