From adf51a53b9df973c545a5ab0f0b378845605cb56 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Fri, 16 Aug 2024 11:20:15 -0700 Subject: [PATCH] fix test --- tests/app/service/test_rest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/app/service/test_rest.py b/tests/app/service/test_rest.py index 0cdae7de4..44f79ab61 100644 --- a/tests/app/service/test_rest.py +++ b/tests/app/service/test_rest.py @@ -1954,8 +1954,8 @@ def test_get_all_notifications_for_service_including_ones_made_by_jobs( resp = json.loads(response.get_data(as_text=True)) assert len(resp["notifications"]) == expected_count_of_notifications - assert resp["notifications"][0]["to"] == sample_notification_with_job.to - assert resp["notifications"][1]["to"] == sample_notification.to + assert resp["notifications"][0]["to"] == '' + assert resp["notifications"][1]["to"] == '' assert response.status_code == 200