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 890cd65aa8)
This commit is contained in:
Douglas Mendizábal 2022-05-18 08:39:52 -05:00
parent a0b4d1024c
commit 21e7796bca
1 changed files with 0 additions and 2 deletions

View File

@ -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)