Removed unnecessary commas in tests.

This commit is contained in:
Mariusz Felisiak 2022-12-21 11:41:29 +01:00 committed by GitHub
parent 2d676ee119
commit 3b24a3fa33
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 8 additions and 10 deletions

View file

@ -2088,7 +2088,7 @@ class AggregateTestCase(TestCase):
def test_aggregation_over_annotation_shared_alias(self):
self.assertEqual(
Publisher.objects.annotate(agg=Count("book__authors"),).aggregate(
Publisher.objects.annotate(agg=Count("book__authors")).aggregate(
agg=Count("agg"),
),
{"agg": 5},