summaryrefslogtreecommitdiff
path: root/tests/aggregation_regress
diff options
context:
space:
mode:
authorJosh Soref <jsoref@users.noreply.github.com>2015-12-02 23:55:50 +0000
committerTim Graham <timograham@gmail.com>2015-12-03 12:48:24 -0500
commit93452a70e8a62c7408eeded444f5088d4a26212d (patch)
treedfc64c81f0610e45650350e2d41918f5913ed098 /tests/aggregation_regress
parentb6dd0afead80a17d0ac8c3ba35c510afac32a0b8 (diff)
downloaddjango-93452a70e8a62c7408eeded444f5088d4a26212d.tar.gz
Fixed many spelling mistakes in code, comments, and docs.
Diffstat (limited to 'tests/aggregation_regress')
-rw-r--r--tests/aggregation_regress/tests.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/aggregation_regress/tests.py b/tests/aggregation_regress/tests.py
index 380a33b66d..1373594276 100644
--- a/tests/aggregation_regress/tests.py
+++ b/tests/aggregation_regress/tests.py
@@ -1346,9 +1346,9 @@ class AggregationTests(TestCase):
in group by.
"""
qs = Book.objects.annotate(
- acount=Count('authors')
+ account=Count('authors')
).filter(
- acount=F('publisher__num_awards')
+ account=F('publisher__num_awards')
)
self.assertQuerysetEqual(
qs, ['Sams Teach Yourself Django in 24 Hours'],