From 73cc4218d5569c33bf32427d09014f3f1e9e712d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Douglas=20Mendiz=C3=A1bal?= Date: Wed, 18 May 2022 08:39:52 -0500 Subject: Don't skip test_should_show_usage_with_help_flag 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) --- barbicanclient/tests/test_barbican.py | 2 -- 1 file changed, 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) -- cgit v1.2.1