From 4bcb94c98b6f58084ce570ccc322f69576a8caba Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Mon, 11 Nov 2024 11:22:10 -0800 Subject: [PATCH] billing dao test --- tests/app/dao/test_annual_billing_dao.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/app/dao/test_annual_billing_dao.py b/tests/app/dao/test_annual_billing_dao.py index de07e21c4..df248bd0f 100644 --- a/tests/app/dao/test_annual_billing_dao.py +++ b/tests/app/dao/test_annual_billing_dao.py @@ -138,6 +138,6 @@ def test_dao_get_annual_billing(mocker): stmt = mock_db_session.call_args[0][0] print(f"stmt = {stmt}") print(f"params = {stmt.compile().params}") - assert stmt.compile().params["service_id"] == service_id + assert stmt.compile().params["service_id_1"] == service_id assert result == ["billing_entry1", "billing_entry2"]