Skip to content

Commit

Permalink
chg: Removed double quotes.
Browse files Browse the repository at this point in the history
  • Loading branch information
cedricbonhomme committed Nov 25, 2024
1 parent 920f76c commit e4a8994
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_web.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ def test_create_user_not_allowed_login(self) -> None:
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.')
Expand Down

0 comments on commit e4a8994

Please sign in to comment.