Update the word 'Senin' to 'Senlin'

Correcting the word 'Senin' to 'Senlin' in the msg variable for
warning.

Change-Id: I5b4a309ddc36328bf56123f1b979f3eb5e1ff171
This commit is contained in:
Ayush Garg
2016-01-19 15:05:45 +05:30
parent 3cb3e60c79
commit d9c7398ed4
2 changed files with 8 additions and 6 deletions

View File

@@ -160,8 +160,8 @@ class SenlinShell(object):
# if both username and user_id are specified, user_id takes precedence
if (args.username and args.user_id):
msg = _('Both user name and user ID are specified, Senin will use '
'user ID for authentication')
msg = _('Both user name and user ID are specified, Senlin will '
'use user ID for authentication')
print(_('WARNING: %s') % msg)
if 'v3' in args.auth_url:
@@ -198,7 +198,8 @@ class SenlinShell(object):
if ((args.project_id or args.tenant_id) and
(args.project_name or args.tenant_name)):
msg = _('Both project/tenant name and project/tenant ID are '
'specified, Senin will use project ID for authentication')
'specified, Senlin will use project ID for '
'authentication')
print(_('WARNING: %s') % msg)
# project name may not be unique

View File

@@ -276,8 +276,8 @@ class ShellTest(testtools.TestCase):
args.project_id = None
args.tenant_id = None
sh._check_identity_arguments(args)
msg = _('WARNING: Both user name and user ID are specified, Senin '
'will use user ID for authentication')
msg = _('WARNING: Both user name and user ID are specified, '
'Senlin will use user ID for authentication')
mock_print.assert_called_with(msg)
# 'v3' in auth_url but neither user_domain_id nor user_domain_name
@@ -320,7 +320,8 @@ class ShellTest(testtools.TestCase):
args.user_id = None
sh._check_identity_arguments(args)
msg = _('Both project/tenant name and project/tenant ID are '
'specified, Senin will use project ID for authentication')
'specified, Senlin will use project ID for '
'authentication')
mock_print.assert_called_with(_('WARNING: %s') % msg)
# Project name may not be unique
args = TestArgs()