From ad42c8d51d06b594f5c66fb430bdb6f096ff5ce7 Mon Sep 17 00:00:00 2001 From: Kenneth Kehl <@kkehl@flexion.us> Date: Fri, 27 Jun 2025 13:42:33 -0700 Subject: [PATCH] git coverage for the notifications client --- tests/notifications-python-client/test_notifications.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/notifications-python-client/test_notifications.py b/tests/notifications-python-client/test_notifications.py index 51d5778d2..3d898c703 100644 --- a/tests/notifications-python-client/test_notifications.py +++ b/tests/notifications-python-client/test_notifications.py @@ -7,7 +7,7 @@ from notifications_python_client.notifications import NotificationsAPIClient @pytest.fixture def client(): - client = NotificationsAPIClient() + client = NotificationsAPIClient("api-key") client.post = Mock() client.get = Mock() client._perform_request = Mock()