From e03dc297095c2b7624f88c243efb374922328fbf Mon Sep 17 00:00:00 2001 From: Muhammad Farhan Date: Tue, 24 Sep 2024 13:18:11 +0500 Subject: [PATCH] test: verifing test cases 28 --- .../management/commands/tests/test_goal_reminder_email.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/djangoapps/course_goals/management/commands/tests/test_goal_reminder_email.py b/lms/djangoapps/course_goals/management/commands/tests/test_goal_reminder_email.py index 4e0a0a0a14e0..0e6a2c8f637e 100644 --- a/lms/djangoapps/course_goals/management/commands/tests/test_goal_reminder_email.py +++ b/lms/djangoapps/course_goals/management/commands/tests/test_goal_reminder_email.py @@ -106,7 +106,7 @@ def test_will_send_on_right_day(self, days_per_week, days_of_activity, current_d goal = self.make_valid_goal(days_per_week=days_per_week) for day in range(days_of_activity): UserActivityFactory(user=goal.user, course_key=goal.course_key, - date=datetime(2021, 3, day + 1, tzinfo=ZoneInfo("UTC"))) + date=datetime(2021, 3, day + 1, tzinfo=ZoneInfo("UTC"))) self.call_command(day=current_day, expect_sent=expect_sent)