Fixed flake8 warnings.
This commit is contained in:
parent
9e8658db51
commit
4b257cf261
|
@ -130,7 +130,7 @@ class IntrospectionTests(TestCase):
|
||||||
self.assertEqual(
|
self.assertEqual(
|
||||||
set(key_columns),
|
set(key_columns),
|
||||||
{('reporter_id', Reporter._meta.db_table, 'id'),
|
{('reporter_id', Reporter._meta.db_table, 'id'),
|
||||||
('response_to_id', Article._meta.db_table, 'id')})
|
('response_to_id', Article._meta.db_table, 'id')})
|
||||||
|
|
||||||
def test_get_primary_key_column(self):
|
def test_get_primary_key_column(self):
|
||||||
with connection.cursor() as cursor:
|
with connection.cursor() as cursor:
|
||||||
|
|
|
@ -720,7 +720,7 @@ class GenericRelationTests(TestCase):
|
||||||
# attributes, so the following makes sense:
|
# attributes, so the following makes sense:
|
||||||
qs = TaggedItem.objects.filter(content_type=ct, tag='awesome').prefetch_related('content_object__read_by')
|
qs = TaggedItem.objects.filter(content_type=ct, tag='awesome').prefetch_related('content_object__read_by')
|
||||||
readers_of_awesome_books = {r.name for tag in qs
|
readers_of_awesome_books = {r.name for tag in qs
|
||||||
for r in tag.content_object.read_by.all()}
|
for r in tag.content_object.read_by.all()}
|
||||||
self.assertEqual(readers_of_awesome_books, {"me", "you", "someone"})
|
self.assertEqual(readers_of_awesome_books, {"me", "you", "someone"})
|
||||||
|
|
||||||
def test_nullable_GFK(self):
|
def test_nullable_GFK(self):
|
||||||
|
|
|
@ -994,7 +994,7 @@ class ContextTests(TestCase):
|
||||||
# None, True and False are builtins of BaseContext, and present
|
# None, True and False are builtins of BaseContext, and present
|
||||||
# in every Context without needing to be added.
|
# in every Context without needing to be added.
|
||||||
self.assertEqual({'None', 'True', 'False', 'hello', 'goodbye',
|
self.assertEqual({'None', 'True', 'False', 'hello', 'goodbye',
|
||||||
'python', 'dolly'},
|
'python', 'dolly'},
|
||||||
l.keys())
|
l.keys())
|
||||||
|
|
||||||
def test_15368(self):
|
def test_15368(self):
|
||||||
|
|
Loading…
Reference in New Issue