From 68f19a889a2b25b91f09b52bb2d0058919fc47c3 Mon Sep 17 00:00:00 2001 From: Alexandre Teixeira Date: Tue, 16 Jun 2026 03:24:48 +0100 Subject: [PATCH] test: add fire_and_forget to API chat webhook stub --- 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;