summaryrefslogtreecommitdiff
path: root/tests/lookup/tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lookup/tests.py')
-rw-r--r--tests/lookup/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lookup/tests.py b/tests/lookup/tests.py
index 10e4c3d1fe..53eb76d174 100644
--- a/tests/lookup/tests.py
+++ b/tests/lookup/tests.py
@@ -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())