From c88485a15119c08a9913bc76232a30a8813e53fa Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Wed, 23 Oct 2024 11:17:03 -0700 Subject: [PATCH] add test for populate_go_live --- tests/app/test_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/app/test_commands.py b/tests/app/test_commands.py index 37106eea9..1163032b5 100644 --- a/tests/app/test_commands.py +++ b/tests/app/test_commands.py @@ -107,7 +107,7 @@ def test_update_jobs_archived_flag(notify_db_session, notify_api): create_job(sms_template) right_now = utc_now() - tomorrow = right_now + datetime.timedelta(days=1) + tomorrow = right_now + timedelta(days=1) right_now = right_now.strftime("%Y-%m-%d") tomorrow = tomorrow.strftime("%Y-%m-%d")