summaryrefslogtreecommitdiff
path: root/tests/lookup
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2022-12-21 11:41:29 +0100
committerGitHub <noreply@github.com>2022-12-21 11:41:29 +0100
commit3b24a3fa337bedc11352a17952cb9c3f77f9b9f2 (patch)
tree07ee0d4d39c6c2966a5cfc9aaec44b8abed3c153 /tests/lookup
parent2d676ee119696250a8b76c69ec9d9b799ddeb6b4 (diff)
downloaddjango-3b24a3fa337bedc11352a17952cb9c3f77f9b9f2.tar.gz
Removed unnecessary commas in tests.
Diffstat (limited to 'tests/lookup')
-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())