mirror of
https://github.com/django/django.git
synced 2025-09-26 12:09:19 +00:00
Refs #33476 -- Refactored code to strictly match 88 characters line length.
This commit is contained in:
parent
9c19aff7c7
commit
7119f40c98
404 changed files with 5944 additions and 2842 deletions
|
@ -44,6 +44,8 @@ class SHA256Tests(TestCase):
|
|||
def test_transform(self):
|
||||
with register_lookup(CharField, SHA256):
|
||||
authors = Author.objects.filter(
|
||||
alias__sha256="ef61a579c907bbed674c0dbcbcf7f7af8f851538eef7b8e58c5bee0b8cfdac4a",
|
||||
alias__sha256=(
|
||||
"ef61a579c907bbed674c0dbcbcf7f7af8f851538eef7b8e58c5bee0b8cfdac4a"
|
||||
),
|
||||
).values_list("alias", flat=True)
|
||||
self.assertSequenceEqual(authors, ["John Smith"])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue