summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-06-06 12:12:42 -0400
committerTim Graham <timograham@gmail.com>2017-06-06 12:17:16 -0400
commit6ae60295d71b29e55d0498551c0dd6ee07cee1c4 (patch)
tree644fb03020a8a45ae897adf4257446e70b0eae4d /docs
parent8f7e6b55e55f102d5e8ea7b9eca46b82bf8eaf61 (diff)
[1.11.x] Updated was_published_recently() tutorial test to check boundary condition.
Backport of 268a646353c6fa9e5fc3730e13b386ddabb018ef from master
Diffstat (limited to 'docs')
-rw-r--r--docs/intro/tutorial05.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/intro/tutorial05.txt b/docs/intro/tutorial05.txt
index f32fccc33d..7b1287809a 100644
--- a/docs/intro/tutorial05.txt
+++ b/docs/intro/tutorial05.txt
@@ -285,7 +285,7 @@ more comprehensively:
was_published_recently() should return False for questions whose
pub_date is older than 1 day.
"""
- time = timezone.now() - datetime.timedelta(days=30)
+ time = timezone.now() - datetime.timedelta(days=1)
old_question = Question(pub_date=time)
self.assertIs(old_question.was_published_recently(), False)
@@ -294,7 +294,7 @@ more comprehensively:
was_published_recently() should return True for questions whose
pub_date is within the last day.
"""
- time = timezone.now() - datetime.timedelta(hours=1)
+ time = timezone.now() - datetime.timedelta(hours=23, minutes=59, seconds=59)
recent_question = Question(pub_date=time)
self.assertIs(recent_question.was_published_recently(), True)