Add missing ws seperator between words

This is to add missing ws seperator between words, usually
in log messages.

Change-Id: I228573a755717bb9725267fad61706ce2ef3da87
This commit is contained in:
zhufl 2018-11-16 15:34:56 +08:00
parent f824fcf0d7
commit de67637682
6 changed files with 7 additions and 7 deletions

View File

@ -50,7 +50,7 @@ class TenantsTestJSON(base.BaseIdentityV2AdminTest):
'been sent in response for create')
body = self.tenants_client.show_tenant(tenant_id)['tenant']
desc2 = body['description']
self.assertEqual(desc2, tenant_desc, 'Description does not appear'
self.assertEqual(desc2, tenant_desc, 'Description does not appear '
'to be set')
self.tenants_client.delete_tenant(tenant_id)

View File

@ -31,7 +31,7 @@ class ProjectsTestJSON(base.BaseIdentityV3AdminTest):
'been sent in response for create')
body = self.projects_client.show_project(project_id)['project']
desc2 = body['description']
self.assertEqual(desc2, project_desc, 'Description does not appear'
self.assertEqual(desc2, project_desc, 'Description does not appear '
'to be set')
@decorators.idempotent_id('5f50fe07-8166-430b-a882-3b2ee0abe26f')

View File

@ -279,7 +279,7 @@ class TempestCleanup(command.Command):
self.admin_id,
self.admin_role_id)
except Exception as ex:
LOG.exception("Failed removing role from project which still"
LOG.exception("Failed removing role from project which still "
"exists, exception: %s", ex)
def _project_exists(self, project_id):

View File

@ -243,8 +243,8 @@ class TempestRun(command.Command):
parser.add_argument('--load-list', '--load_list',
help='Path to a non-regex whitelist file, '
'this file contains a separate test '
'on each newline. This command'
'supports files created by the tempest'
'on each newline. This command '
'supports files created by the tempest '
'run ``--list-tests`` command')
# list only args
parser.add_argument('--list-tests', '-l', action='store_true',

View File

@ -324,7 +324,7 @@ class KeystoneAuthProvider(AuthProvider):
pass
if expiry is None:
raise ValueError(
"time data '{data}' does not match any of the"
"time data '{data}' does not match any of the "
"expected formats: {formats}".format(
data=expiry_string, formats=self.EXPIRY_DATE_FORMATS))
return expiry

View File

@ -581,7 +581,7 @@ class BaseTestCase(testtools.testcase.WithAttributes,
def setUp(self):
super(BaseTestCase, self).setUp()
if not self.__setupclass_called:
raise RuntimeError("setUpClass does not calls the super's"
raise RuntimeError("setUpClass does not calls the super's "
"setUpClass in the " +
self.__class__.__name__)
at_exit_set.add(self.__class__)