summaryrefslogtreecommitdiff
path: root/tests/db_functions/text/test_sha224.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/db_functions/text/test_sha224.py')
-rw-r--r--tests/db_functions/text/test_sha224.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/db_functions/text/test_sha224.py b/tests/db_functions/text/test_sha224.py
index 83c30a3091..a6254f43e3 100644
--- a/tests/db_functions/text/test_sha224.py
+++ b/tests/db_functions/text/test_sha224.py
@@ -46,7 +46,9 @@ class SHA224Tests(TestCase):
def test_transform(self):
with register_lookup(CharField, SHA224):
authors = Author.objects.filter(
- alias__sha224="a61303c220731168452cb6acf3759438b1523e768f464e3704e12f70",
+ alias__sha224=(
+ "a61303c220731168452cb6acf3759438b1523e768f464e3704e12f70"
+ ),
).values_list("alias", flat=True)
self.assertSequenceEqual(authors, ["John Smith"])