summaryrefslogtreecommitdiff
path: root/openstackclient/tests/functional
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2017-01-15 05:51:42 +0000
committerGerrit Code Review <review@openstack.org>2017-01-15 05:51:42 +0000
commit368666194bb11e1543fb683e8b42729620a69aac (patch)
tree48bb5b434c49a26432523b427a1d280932173e20 /openstackclient/tests/functional
parent4c5cea46bed0812c090cb6732fc9bc4a8dead387 (diff)
parent819526591ee2cdbf7f138a08f9c38b9c804e5d31 (diff)
downloadpython-openstackclient-368666194bb11e1543fb683e8b42729620a69aac.tar.gz
Merge "Fix quota show --default command"
Diffstat (limited to 'openstackclient/tests/functional')
-rw-r--r--openstackclient/tests/functional/common/test_quota.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/openstackclient/tests/functional/common/test_quota.py b/openstackclient/tests/functional/common/test_quota.py
index fbb8e563..b2b198af 100644
--- a/openstackclient/tests/functional/common/test_quota.py
+++ b/openstackclient/tests/functional/common/test_quota.py
@@ -35,19 +35,16 @@ class QuotaTests(base.TestCase):
raw_output = self.openstack('quota show ' + self.PROJECT_NAME + opts)
self.assertEqual("11\n11\n11\n", raw_output)
- @testtools.skip('broken SDK testing')
def test_quota_show(self):
raw_output = self.openstack('quota show ' + self.PROJECT_NAME)
for expected_field in self.EXPECTED_FIELDS:
self.assertIn(expected_field, raw_output)
- @testtools.skip('broken SDK testing')
def test_quota_show_default_project(self):
raw_output = self.openstack('quota show')
for expected_field in self.EXPECTED_FIELDS:
self.assertIn(expected_field, raw_output)
- @testtools.skip('broken SDK testing')
def test_quota_show_with_default_option(self):
raw_output = self.openstack('quota show --default')
for expected_field in self.EXPECTED_FIELDS: