tests: Remove unnecessary service check

The base functional test class already checks that the block-storage
service is present and supports the v3 API. No need to duplicate this.

Change-Id: I478ed8d08b111aa8ef51cd11978f94d5cc576b14
Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
This commit is contained in:
Stephen Finucane 2022-09-07 12:43:21 +01:00
parent 9fa6603d4e
commit 60c067cdab

View File

@ -20,9 +20,6 @@ class TestGroup(base.BaseBlockStorageTest):
def setUp(self):
super().setUp()
if not self.user_cloud.has_service('block-storage'):
self.skipTest('block-storage service not supported by cloud')
# there will always be at least one volume type, i.e. the default one
volume_types = list(self.conn.block_storage.types())
self.volume_type = volume_types[0]