chg: Removed double quotes.

This commit is contained in:
Cédric Bonhomme 2024-11-25 17:37:54 +01:00
parent 920f76cf17
commit e4a89948a4
Signed by untrusted user who does not match committer: cedric
GPG key ID: A1CB94DE57B7A70D

View file

@ -267,7 +267,7 @@ class TestPublic(unittest.TestCase):
instance_config = self.client.get_config_info()
if not instance_config.get('registration'):
return None
for login in ["login", "user", "username", "help", "test", "about", "administration", "account"]:
for login in ['login', 'user', 'username', 'help', 'test', 'about', 'administration', 'account']:
user = self.client.create_user(name='test Name', login=login,
organisation='test Organization', email='test@testorg.local')
self.assertEqual(user['message'], 'Username not allowed.')