From b9f1eae7e3ac7c6a5718f5d565e8dd33c9cde948 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Tue, 15 Oct 2024 11:34:35 -0700 Subject: [PATCH] remove all() from statement --- tests/app/dao/test_fact_billing_dao.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/app/dao/test_fact_billing_dao.py b/tests/app/dao/test_fact_billing_dao.py index 11ec97b9f..49c59d48d 100644 --- a/tests/app/dao/test_fact_billing_dao.py +++ b/tests/app/dao/test_fact_billing_dao.py @@ -1297,7 +1297,7 @@ def test_query_organization_sms_usage_for_year_handles_multiple_rates( ) stmt = query_organization_sms_usage_for_year(org.id, 2022) - rows = db.session.execute(rows).all() + rows = db.session.execute(stmt).all() result = [row._asdict() for row in rows] # al lthe free allowance is used on the first day