summaryrefslogtreecommitdiff
path: root/openstackclient/tests/functional/volume/v1/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'openstackclient/tests/functional/volume/v1/common.py')
-rw-r--r--openstackclient/tests/functional/volume/v1/common.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/openstackclient/tests/functional/volume/v1/common.py b/openstackclient/tests/functional/volume/v1/common.py
index bb3c674e..04eb1f48 100644
--- a/openstackclient/tests/functional/volume/v1/common.py
+++ b/openstackclient/tests/functional/volume/v1/common.py
@@ -12,7 +12,6 @@
import fixtures
-from openstackclient.tests.functional import base
from openstackclient.tests.functional.volume import base as volume_base
@@ -25,7 +24,7 @@ class BaseVolumeTests(volume_base.BaseVolumeTests):
# TODO(dtroyer): This needs to be updated to specifically check for
# Volume v1 rather than just 'volume', but for now
# that is enough until we get proper version negotiation
- cls.haz_volume_v1 = base.is_service_enabled('volume')
+ cls.haz_volume_v1 = cls.is_service_enabled('volume')
def setUp(self):
super(BaseVolumeTests, self).setUp()