From 4f3b99b8baec4f49cdb3fdc549fcaf5b601c0174 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Mon, 18 Nov 2024 09:36:41 -0800 Subject: [PATCH] more --- tests/app/dao/test_service_email_reply_to_dao.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/app/dao/test_service_email_reply_to_dao.py b/tests/app/dao/test_service_email_reply_to_dao.py index c6ee1089b..297d15edf 100644 --- a/tests/app/dao/test_service_email_reply_to_dao.py +++ b/tests/app/dao/test_service_email_reply_to_dao.py @@ -208,7 +208,7 @@ def test_update_reply_to_email_address_set_updated_to_default(sample_service): is_default=True, ) - results = db.session.execute(select(ServiceEmailReplyTo)).scalars().all() + results = db.session.execute(select(ServiceEmailReplyTo)).all() assert len(results) == 2 for x in results: if x.email_address == "change_address@email.com":