commit | cc2cbda0722533cf7f8491cfd88f5389d11b92fd | [log] [tgz] |
---|---|---|
author | Ghanshyam Mann <gmann@ghanshyammann.com> | Fri Sep 15 10:23:01 2023 -0700 |
committer | Ghanshyam Mann <gmann@ghanshyammann.com> | Fri Sep 15 10:23:01 2023 -0700 |
tree | 1b644a4f5d9b21f7202e3773c9194b271ae820ed | |
parent | 109a68df14c70244a890494a4c7ee3013e366af0 [diff] |
Fix the unstable_test syntax for test_live_migration_with_trunk test_live_migration_with_trunk test was marked as unstable in - https://review.opendev.org/c/openstack/tempest/+/895167 but it used the wrong syntax for unstable_test decorator. Change-Id: I8f4f3cafe8265984470bf45a9d85b3c9f765a251
diff --git a/tempest/api/compute/admin/test_live_migration.py b/tempest/api/compute/admin/test_live_migration.py index ef09269..d68334f 100644 --- a/tempest/api/compute/admin/test_live_migration.py +++ b/tempest/api/compute/admin/test_live_migration.py
@@ -258,7 +258,8 @@ port = self.ports_client.show_port(port_id)['port'] return port['status'] == 'ACTIVE' - @decorators.unstable_test(bug='2024160/2033887') + @decorators.unstable_test(bug='2024160') + @decorators.unstable_test(bug='2033887') @decorators.attr(type='multinode') @decorators.idempotent_id('0022c12e-a482-42b0-be2d-396b5f0cffe3') @utils.requires_ext(service='network', extension='trunk')