mirror of
https://github.com/django/django.git
synced 2025-06-05 03:29:12 +00:00
Merge pull request #2810 from magrinidiego/ticket_22842_tutorial_test
Fixed #22842
This commit is contained in:
commit
c755c8daa2
@ -246,7 +246,7 @@ past:
|
|||||||
|
|
||||||
def was_published_recently(self):
|
def was_published_recently(self):
|
||||||
now = timezone.now()
|
now = timezone.now()
|
||||||
return now - datetime.timedelta(days=1) <= self.pub_date < now
|
return now - datetime.timedelta(days=1) <= self.pub_date <= now
|
||||||
|
|
||||||
and run the test again::
|
and run the test again::
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user