mirror of
https://github.com/django/django.git
synced 2025-10-31 09:41:08 +00:00
Removed unnecessary commas in tests.
This commit is contained in:
@@ -1218,7 +1218,7 @@ class LookupTests(TestCase):
|
||||
|
||||
def test_exact_exists(self):
|
||||
qs = Article.objects.filter(pk=OuterRef("pk"))
|
||||
seasons = Season.objects.annotate(pk_exists=Exists(qs),).filter(
|
||||
seasons = Season.objects.annotate(pk_exists=Exists(qs)).filter(
|
||||
pk_exists=Exists(qs),
|
||||
)
|
||||
self.assertCountEqual(seasons, Season.objects.all())
|
||||
|
||||
Reference in New Issue
Block a user