mirror of
https://github.com/django/django.git
synced 2025-08-03 18:38:50 +00:00
Fixed assorted flake8 errors.
This commit is contained in:
parent
695bc0d191
commit
b67ab75e82
38 changed files with 92 additions and 73 deletions
|
@ -24,7 +24,7 @@ class OrLookupsTests(TestCase):
|
|||
|
||||
def test_filter_or(self):
|
||||
self.assertQuerysetEqual(
|
||||
Article.objects.filter(headline__startswith='Hello') | Article.objects.filter(headline__startswith='Goodbye'), [
|
||||
Article.objects.filter(headline__startswith='Hello') | Article.objects.filter(headline__startswith='Goodbye'), [
|
||||
'Hello',
|
||||
'Goodbye',
|
||||
'Hello and goodbye'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue