diff options
| author | Renato Oliveira <renato@labcodes.com.br> | 2015-09-11 10:14:35 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-09-11 12:21:11 -0400 |
| commit | f328ebdede9e10779c1fb93d45f72dade7eda23f (patch) | |
| tree | 99d0d256aed38bb43cf7903f2eafb414e89cf0a8 /tests/aggregation_regress | |
| parent | d32edd8c99da8a5035542b7bcc83891edda73116 (diff) | |
[1.8.x] Fixed #25382 -- Removed obsolete references to DateQuerySet.
Backport of e3720b990a33ae259da4b1f1f6069aa6bbc8c03d from master
Diffstat (limited to 'tests/aggregation_regress')
| -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 12bb1ae3f4..793775c41b 100644 --- a/tests/aggregation_regress/tests.py +++ b/tests/aggregation_regress/tests.py @@ -568,7 +568,7 @@ class AggregationTests(TestCase): lambda b: b.name ) - # Regression for #10248 - Annotations work with DateQuerySets + # Regression for #10248 - Annotations work with dates() qs = Book.objects.annotate(num_authors=Count('authors')).filter(num_authors=2).dates('pubdate', 'day') self.assertQuerysetEqual( qs, [ |
