mirror of https://github.com/django/django.git
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…
Reference in New Issue