From 60c067cdabe5c0d330a2ee390eaf85ba7bfa3a1d Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Wed, 7 Sep 2022 12:43:21 +0100 Subject: [PATCH] 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 --- openstack/tests/functional/block_storage/v3/test_group.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/openstack/tests/functional/block_storage/v3/test_group.py b/openstack/tests/functional/block_storage/v3/test_group.py index a3929d610..feafb0996 100644 --- a/openstack/tests/functional/block_storage/v3/test_group.py +++ b/openstack/tests/functional/block_storage/v3/test_group.py @@ -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]