Merge "Correct failures for check W292"

This commit is contained in:
Jenkins
2015-01-15 03:51:10 +00:00
committed by Gerrit Code Review
3 changed files with 4 additions and 4 deletions

View File

@@ -37,4 +37,4 @@ class CertificateTests(utils.TestCase, testresources.ResourcedTestCase):
def load_tests(loader, tests, pattern):
return testresources.OptimisingTestSuite(tests)
return testresources.OptimisingTestSuite(tests)

View File

@@ -39,4 +39,4 @@ class CertificatesManager(object):
resp, body = self._client.get('/certificates/signing',
authenticated=False)
return resp.text
return resp.text

View File

@@ -35,8 +35,8 @@ commands = oslo_debug_helper -t keystoneclient/tests {posargs}
# H304: no relative imports
# H405: multi line docstring summary not separated with an empty line
# E122: continuation line missing indentation or outdented
# New from hacking 0.10: H238,W292
ignore = F821,H238,H304,H405,E122,W292
# New from hacking 0.10: H238
ignore = F821,H238,H304,H405,E122
show-source = True
exclude = .venv,.tox,dist,doc,*egg,build,*openstack/common*