From 8865e706ead70a57eb0430cdb2b7a62ded6d364d Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Mon, 1 May 2023 14:11:08 -0700 Subject: [PATCH] cleanup --- 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 a5374ce26..3fe9ffba1 100644 --- a/tests/app/service/test_rest.py +++ b/tests/app/service/test_rest.py @@ -2269,7 +2269,7 @@ def test_update_service_does_not_call_send_notification_for_live_service(sample_ send_notification_mock = mocker.patch('app.service.rest.send_notification_to_service_users') data = { - "restricted": True, + "restricted": True } auth_header = create_admin_authorization_header() @@ -2288,7 +2288,7 @@ def test_update_service_does_not_call_send_notification_when_restricted_not_chan send_notification_mock = mocker.patch('app.service.rest.send_notification_to_service_users') data = { - "name": 'Name of service', + "name": 'Name of service' } auth_header = create_admin_authorization_header()