mirror of
https://github.com/django/django.git
synced 2024-12-01 15:42:04 +01: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):
|
||||
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::
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user