We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1d59c3 commit 2324f8eCopy full SHA for 2324f8e
1 file changed
tests/server/tasks/test_inmemory_push_notifications.py
@@ -226,7 +226,6 @@ async def test_send_notification_http_status_error(
226
'Error sending push-notification',
227
mock_logger.exception.call_args[0][0],
228
)
229
- self.assertIn(str(http_error), mock_logger.exception.call_args[0][0])
230
231
@patch('a2a.server.tasks.base_push_notification_sender.logger')
232
async def test_send_notification_request_error(
@@ -248,7 +247,6 @@ async def test_send_notification_request_error(
248
247
249
250
251
- self.assertIn(str(request_error), mock_logger.exception.call_args[0][0])
252
253
254
async def test_send_notification_with_auth(self, mock_logger: MagicMock):
0 commit comments