chore(cleanups): cleanup unicode usage...

This commit is contained in:
RhodeCode Admin 2024-06-23 21:48:10 +02:00
parent e013e4ca46
commit 8f1e706ad8
9 changed files with 17 additions and 17 deletions

View file

@ -211,8 +211,8 @@ class TestCreateRepoGroup(object):
expected = {
'repo_group':
u'You do not have the permission to store '
u'repository groups in the root location.'}
'You do not have the permission to store '
'repository groups in the root location.'}
assert_error(id_, expected, given=response.body)
def test_api_create_repo_group_regular_user_no_parent_group_perms(self):
@ -232,8 +232,8 @@ class TestCreateRepoGroup(object):
expected = {
'repo_group':
u"You do not have the permissions to store "
u"repository groups inside repository group `{}`".format(repo_group_name)}
"You do not have the permissions to store "
"repository groups inside repository group `{}`".format(repo_group_name)}
try:
assert_error(id_, expected, given=response.body)
finally: