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
This commit is contained in:
Ghanshyam Mann 2023-09-15 10:23:01 -07:00
parent 109a68df14
commit cc2cbda072

View File

@ -258,7 +258,8 @@ class LiveMigrationTest(LiveMigrationTestBase):
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')