summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorRenato Oliveira <renato@labcodes.com.br>2015-09-11 10:14:35 -0500
committerTim Graham <timograham@gmail.com>2015-09-11 12:21:11 -0400
commitf328ebdede9e10779c1fb93d45f72dade7eda23f (patch)
tree99d0d256aed38bb43cf7903f2eafb414e89cf0a8 /tests
parentd32edd8c99da8a5035542b7bcc83891edda73116 (diff)
[1.8.x] Fixed #25382 -- Removed obsolete references to DateQuerySet.
Backport of e3720b990a33ae259da4b1f1f6069aa6bbc8c03d from master
Diffstat (limited to 'tests')
-rw-r--r--tests/aggregation_regress/tests.py2
-rw-r--r--tests/queries/tests.py6
2 files changed, 4 insertions, 4 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, [
diff --git a/tests/queries/tests.py b/tests/queries/tests.py
index 84871e8dfe..deb195fe9c 100644
--- a/tests/queries/tests.py
+++ b/tests/queries/tests.py
@@ -741,7 +741,7 @@ class Queries1Tests(BaseQuerysetTest):
3
)
- # Pickling of DateQuerySets used to fail
+ # Pickling of QuerySets using datetimes() should work.
qs = Item.objects.datetimes('created', 'month')
pickle.loads(pickle.dumps(qs))
@@ -1303,8 +1303,8 @@ class Queries3Tests(BaseQuerysetTest):
self.assertQuerysetEqual(Valid.objects.all(), [])
def test_ticket8683(self):
- # Raise proper error when a DateQuerySet gets passed a wrong type of
- # field
+ # An error should be raised when QuerySet.datetimes() is passed the
+ # wrong type of field.
self.assertRaisesMessage(
AssertionError,
"'name' isn't a DateTimeField.",