Unskip cli-keystone catalog and help tests

Unskip tests which were skipped before pinning python-keyring to
not-faulty version as per bug 1193164.

This reverts commit 27e8547c31.

Change-Id: I1c4c4a509f4629eb8aeb1963e1c9623338d65453
This commit is contained in:
Pavel Sedlák 2013-10-03 18:25:27 +02:00
parent 6296bbfc77
commit 57605e8be2
1 changed files with 0 additions and 4 deletions

View File

@ -19,8 +19,6 @@ import logging
import re
import subprocess
import testtools
import cli
@ -40,7 +38,6 @@ class SimpleReadOnlyKeystoneClientTest(cli.ClientTestBase):
self.keystone,
'this-does-not-exist')
@testtools.skip("Skipped until the Bug #1213912 is resolved")
def test_admin_catalog_list(self):
out = self.keystone('catalog')
catalog = self.parser.details_multiple(out, with_label=True)
@ -92,7 +89,6 @@ class SimpleReadOnlyKeystoneClientTest(cli.ClientTestBase):
self.assertIn('Keystone found at http', discovered)
self.assertIn('supports version', discovered)
@testtools.skip("Skipped until the Bug #1213912 is resolved")
def test_admin_help(self):
help_text = self.keystone('help')
lines = help_text.split('\n')