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)