summaryrefslogtreecommitdiff
path: root/tests/cache
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2022-02-03 11:20:46 +0100
committerGitHub <noreply@github.com>2022-02-03 11:20:46 +0100
commitc5cd8783825b5f6384417dac5f3889b4210b7d08 (patch)
tree3d4689aaa0e209e40d2d8df09edad7e155960b45 /tests/cache
parentc9d6e3595cfd0aa58cde1656bd735ecfcd7a872b (diff)
Refs #33476 -- Refactored problematic code before reformatting by Black.
In these cases Black produces unexpected results, e.g. def make_random_password( self, length=10, allowed_chars='abcdefghjkmnpqrstuvwxyz' 'ABCDEFGHJKLMNPQRSTUVWXYZ' '23456789', ): or cursor.execute(""" SELECT ... """, [table name], )
Diffstat (limited to 'tests/cache')
-rw-r--r--tests/cache/tests.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/cache/tests.py b/tests/cache/tests.py
index 07f6fea48d..6327698dfa 100644
--- a/tests/cache/tests.py
+++ b/tests/cache/tests.py
@@ -70,8 +70,7 @@ def empty_response(request):
KEY_ERRORS_WITH_MEMCACHED_MSG = (
- 'Cache key contains characters that will cause errors if used with '
- 'memcached: %r'
+ 'Cache key contains characters that will cause errors if used with memcached: %r'
)