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 18:44:47 +0000
commit21e7796bcaf8b2dfcf9b35bdd3e31c0845d54ee1 (patch)
treef3a60b520ffed95d426c0ad32139ae2269c01bbb
parenta0b4d1024c4e4455fce3aa0a6ab43536b13c1def (diff)
downloadpython-barbicanclient-stable/ussuri.tar.gz
Don't skip test_should_show_usage_with_help_flagstable/ussuri
This patch removes the skip for a test that is skipped in newer branches. Change-Id: I629bb93320054796c46c0df368a490946ffefe66 (cherry picked from commit 890cd65aa8a97d5c8e588ebe4b63c543d8ccf6c9)
-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 22dfca4..dab036e 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)