diff --git a/tempest/scenario/test_volume_boot_pattern.py b/tempest/scenario/test_volume_boot_pattern.py index 3e259b0f35..8fa2df5d84 100644 --- a/tempest/scenario/test_volume_boot_pattern.py +++ b/tempest/scenario/test_volume_boot_pattern.py @@ -12,7 +12,6 @@ from oslo_log import log from tempest_lib.common.utils import data_utils -from tempest_lib import decorators from tempest import config from tempest.scenario import manager @@ -132,7 +131,6 @@ class TestVolumeBootPattern(manager.ScenarioTest): actual = self._get_content(ssh_client) self.assertEqual(expected, actual) - @decorators.skip_because(bug='1373513') @test.idempotent_id('557cd2c2-4eb8-4dce-98be-f86765ff311b') @test.services('compute', 'volume', 'image') def test_volume_boot_pattern(self): @@ -176,7 +174,6 @@ class TestVolumeBootPattern(manager.ScenarioTest): # NOTE(gfidente): ensure resources are in clean state for # deletion operations to succeed self._stop_instances([instance_2nd, instance_from_snapshot]) - self._detach_volumes([volume_origin, volume]) class TestVolumeBootPatternV2(TestVolumeBootPattern):