mirror of
https://github.com/Sosokker/ku-polls.git
synced 2025-12-19 05:24:05 +01:00
Fix indent in test
This commit is contained in:
parent
956869207f
commit
380201e020
@ -17,8 +17,7 @@ class QuestionModelTests(TestCase):
|
|||||||
future_question = Question(pub_date=time)
|
future_question = Question(pub_date=time)
|
||||||
self.assertIs(future_question.was_published_recently(), False)
|
self.assertIs(future_question.was_published_recently(), False)
|
||||||
|
|
||||||
|
def test_was_published_recently_with_old_question(self):
|
||||||
def test_was_published_recently_with_old_question(self):
|
|
||||||
"""
|
"""
|
||||||
was_published_recently() returns False for questions whose pub_date
|
was_published_recently() returns False for questions whose pub_date
|
||||||
is older than 1 day.
|
is older than 1 day.
|
||||||
@ -28,7 +27,7 @@ def test_was_published_recently_with_old_question(self):
|
|||||||
self.assertIs(old_question.was_published_recently(), False)
|
self.assertIs(old_question.was_published_recently(), False)
|
||||||
|
|
||||||
|
|
||||||
def test_was_published_recently_with_recent_question(self):
|
def test_was_published_recently_with_recent_question(self):
|
||||||
"""
|
"""
|
||||||
was_published_recently() returns True for questions whose pub_date
|
was_published_recently() returns True for questions whose pub_date
|
||||||
is within the last day.
|
is within the last day.
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user