diff options
author | Tim Graham <timograham@gmail.com> | 2016-02-05 13:53:03 -0500 |
---|---|---|
committer | Tim Graham <timograham@gmail.com> | 2016-02-05 15:11:07 -0500 |
commit | 406675b1a03c0568f7768a73e7c279011e56054d (patch) | |
tree | 092da11ce8e2773a29576b2d937e188c7a46621d /tests/aggregation_regress/tests.py | |
parent | 275314512d7dd10065026f02f61931e4c62c9cc8 (diff) | |
download | django-26176.tar.gz |
Fixed #26176 -- Fixed E123 flake8 warnings.26176
Diffstat (limited to 'tests/aggregation_regress/tests.py')
-rw-r--r-- | tests/aggregation_regress/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/aggregation_regress/tests.py b/tests/aggregation_regress/tests.py index 7068b86f6a..c207776822 100644 --- a/tests/aggregation_regress/tests.py +++ b/tests/aggregation_regress/tests.py @@ -963,7 +963,7 @@ class AggregationTests(TestCase): """ books = Book.objects.values_list("publisher__name").annotate( Count("id"), Avg("price"), Avg("authors__age"), avg_pgs=Avg("pages") - ).order_by("-publisher__name") + ).order_by("-publisher__name") self.assertEqual(books[0], ('Sams', 1, 23.09, 45.0, 528.0)) def test_annotation_disjunction(self): |