From 0086399656dab3d62a959f6f39a9c358f0d16d37 Mon Sep 17 00:00:00 2001 From: Alexandre Teixeira <111787685+alteixeira20@users.noreply.github.com> Date: Tue, 16 Jun 2026 04:15:14 +0100 Subject: [PATCH] test: add fire_and_forget to API chat webhook stub (#4383) --- tests/test_api_chat_security.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/test_api_chat_security.py b/tests/test_api_chat_security.py index 3b94bd556..7dcec324e 100644 --- a/tests/test_api_chat_security.py +++ b/tests/test_api_chat_security.py @@ -219,6 +219,9 @@ class _WebhookManager: async def fire(self, event, payload): return None + def fire_and_forget(self, event, payload): + return None + def _install_sync_chat_stubs(monkeypatch): # FastAPI checks for python_multipart at import time when Form is used;