From 55966267c2d13bd861885c3bf1b33717a19bced1 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Thu, 3 Oct 2024 09:35:05 -0700 Subject: [PATCH] add a test in service rest --- tests/app/service/test_rest.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/app/service/test_rest.py b/tests/app/service/test_rest.py index 5e179b708..d6f87d0f6 100644 --- a/tests/app/service/test_rest.py +++ b/tests/app/service/test_rest.py @@ -1975,9 +1975,12 @@ def test_get_monthly_notification_stats_by_user( response = client.get( path=(f"/service/{sample_service.id}/notifications/{sample_user.id}/monthly"), + year=2024, headers=[auth_header], ) + resp = json.loads(response.get_data(as_text=True)) + print(f"RESP is {resp}") # TODO This test could be a little more complete assert response.status_code == 200