From 81b5afc983199a8f94f63b93f9d1850f5d178cd5 Mon Sep 17 00:00:00 2001 From: Cliff Hill Date: Tue, 12 Dec 2023 09:13:43 -0500 Subject: [PATCH] Fixing tests. Signed-off-by: Cliff Hill --- app/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/commands.py b/app/commands.py index 5f73bc3b6..32cbd219b 100644 --- a/app/commands.py +++ b/app/commands.py @@ -319,7 +319,7 @@ def update_jobs_archived_flag(start_date, end_date): where created_at >= (date :start + time '00:00:00') and created_at < (date :end + time '00:00:00') - """ + """ result = db.session.execute( sql, {"start": process_date, "end": process_date + timedelta(days=1)} )