From 380201e020a6ad6859cdf6863fe5d99069944ec6 Mon Sep 17 00:00:00 2001 From: sosokker Date: Tue, 5 Sep 2023 20:17:33 +0700 Subject: [PATCH] Fix indent in test --- polls/tests.py | 33 ++++++++++++++++----------------- 1 file changed, 16 insertions(+), 17 deletions(-) diff --git a/polls/tests.py b/polls/tests.py index 410f88f..d740da3 100644 --- a/polls/tests.py +++ b/polls/tests.py @@ -17,25 +17,24 @@ class QuestionModelTests(TestCase): future_question = Question(pub_date=time) self.assertIs(future_question.was_published_recently(), False) - -def test_was_published_recently_with_old_question(self): - """ - was_published_recently() returns False for questions whose pub_date - is older than 1 day. - """ - time = timezone.now() - datetime.timedelta(days=1, seconds=1) - old_question = Question(pub_date=time) - self.assertIs(old_question.was_published_recently(), False) + def test_was_published_recently_with_old_question(self): + """ + was_published_recently() returns False for questions whose pub_date + is older than 1 day. + """ + time = timezone.now() - datetime.timedelta(days=1, seconds=1) + old_question = Question(pub_date=time) + self.assertIs(old_question.was_published_recently(), False) -def test_was_published_recently_with_recent_question(self): - """ - was_published_recently() returns True for questions whose pub_date - is within the last day. - """ - 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) + def test_was_published_recently_with_recent_question(self): + """ + was_published_recently() returns True for questions whose pub_date + is within the last day. + """ + 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) def create_question(question_text, days):