From c256c3630efc2c5626ed2aed9597d6dd670fe7dc Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Fri, 29 Aug 2025 12:14:49 -0700 Subject: [PATCH] get rid of skips --- tests/app/notifications/test_receive_notification.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/app/notifications/test_receive_notification.py b/tests/app/notifications/test_receive_notification.py index 0c4a15699..fc26005db 100644 --- a/tests/app/notifications/test_receive_notification.py +++ b/tests/app/notifications/test_receive_notification.py @@ -250,7 +250,8 @@ def test_receive_notification_error_if_not_single_matching_service( response = sns_post(client, data) assert response.status_code == 200 - assert response.result == "success" + parsed_response = json.loads(response.get_data(as_text=True)) + assert parsed_response["result"] == "success" stmt = select(func.count()).select_from(InboundSms) count = db.session.execute(stmt).scalar() or 0