summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouglas Mendizábal <dmendiza@redhat.com>2022-05-18 08:39:52 -0500
committerDouglas Mendizábal <dmendiza@redhat.com>2022-05-18 20:47:54 +0000
commit73cc4218d5569c33bf32427d09014f3f1e9e712d (patch)
tree7c775999e1f07027747cee2098cc9ad4dd1a2f56
parent9d8721cb203a7c019da9c4b2a4356444d768dc7c (diff)
downloadpython-barbicanclient-stable/train.tar.gz
Don't skip test_should_show_usage_with_help_flagstable/train
This patch removes the skip for a test that is skipped in newer branches. Change-Id: I629bb93320054796c46c0df368a490946ffefe66 (cherry picked from commit 890cd65aa8a97d5c8e588ebe4b63c543d8ccf6c9) (cherry picked from commit 21e7796bcaf8b2dfcf9b35bdd3e31c0845d54ee1)
-rw-r--r--barbicanclient/tests/test_barbican.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/barbicanclient/tests/test_barbican.py b/barbicanclient/tests/test_barbican.py
index 2e8fc4d..e5c178f 100644
--- a/barbicanclient/tests/test_barbican.py
+++ b/barbicanclient/tests/test_barbican.py
@@ -13,7 +13,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import six
-from testtools import testcase
from barbicanclient import barbican as barb
from barbicanclient.barbican import Barbican
@@ -49,7 +48,6 @@ class WhenTestingBarbicanCLI(test_client.BaseEntityResource):
self.assertIsNotNone(client)
return client
- @testcase.skip("https://storyboard.openstack.org/#!/story/2010022")
def test_should_show_usage_with_help_flag(self):
e = self.assertRaises(SystemExit, self.barbican.run, ['-h'])
self.assertEqual(0, e.code)