summaryrefslogtreecommitdiff
path: root/tests/auth_tests/test_validators.py
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2025-03-01 19:41:37 +0100
committerGitHub <noreply@github.com>2025-03-01 19:41:37 +0100
commitff3aaf036f0cb66cd8f404cd51c603e68aaa7676 (patch)
treea8381709777a84aad1c3c679dc5807bab6f486db /tests/auth_tests/test_validators.py
parentea1e3703bee28bfbe4f32ceb39ad31763353b143 (diff)
Applied Black's 2025 stable style.
https://github.com/psf/black/releases/tag/25.1.0
Diffstat (limited to 'tests/auth_tests/test_validators.py')
-rw-r--r--tests/auth_tests/test_validators.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/auth_tests/test_validators.py b/tests/auth_tests/test_validators.py
index d6ee44511d..ea75c4a080 100644
--- a/tests/auth_tests/test_validators.py
+++ b/tests/auth_tests/test_validators.py
@@ -350,10 +350,10 @@ class UsernameValidatorsTests(SimpleTestCase):
invalid_usernames = [
"o'connell",
"عبد ال",
- "zerowidth\u200Bspace",
- "nonbreaking\u00A0space",
+ "zerowidth\u200bspace",
+ "nonbreaking\u00a0space",
"en\u2013dash",
- "trailingnewline\u000A",
+ "trailingnewline\u000a",
]
v = validators.UnicodeUsernameValidator()
for valid in valid_usernames: