summaryrefslogtreecommitdiff
path: root/openstackclient/tests/functional/base.py
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2017-07-28 05:04:11 +0000
committerGerrit Code Review <review@openstack.org>2017-07-28 05:04:11 +0000
commit31ff012f6c3701df1269b7174e7eebff08b4339a (patch)
tree2f6a8d77570d056d140a6b54ab4b1468e4bb9aef /openstackclient/tests/functional/base.py
parentd25f68f3ba21652d5c81415c593ee8e913abf854 (diff)
parent198a486413738148eb0de2a25749daac289a496e (diff)
downloadpython-openstackclient-31ff012f6c3701df1269b7174e7eebff08b4339a.tar.gz
Merge "network functest: Remove condition for segment test"
Diffstat (limited to 'openstackclient/tests/functional/base.py')
-rw-r--r--openstackclient/tests/functional/base.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/openstackclient/tests/functional/base.py b/openstackclient/tests/functional/base.py
index d95f7f84..4c88b13e 100644
--- a/openstackclient/tests/functional/base.py
+++ b/openstackclient/tests/functional/base.py
@@ -69,11 +69,6 @@ class TestCase(testtools.TestCase):
return cls.openstack('configuration show ' + opts)
@classmethod
- def get_openstack_extension_names(cls):
- opts = cls.get_opts(['Name'])
- return cls.openstack('extension list ' + opts)
-
- @classmethod
def get_opts(cls, fields, output_format='value'):
return ' -f {0} {1}'.format(output_format,
' '.join(['-c ' + it for it in fields]))