From 5ffcc4b735ad11b36860a26fd241b506727d68d6 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sun, 22 Feb 2026 11:52:18 +0000 Subject: [PATCH] test: fix logger stub typing in directive-tags test --- src/gateway/server-methods/chat.directive-tags.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gateway/server-methods/chat.directive-tags.test.ts b/src/gateway/server-methods/chat.directive-tags.test.ts index 9b8e0a2d5c7..896daaf1ce5 100644 --- a/src/gateway/server-methods/chat.directive-tags.test.ts +++ b/src/gateway/server-methods/chat.directive-tags.test.ts @@ -111,7 +111,7 @@ function createChatContext(): Pick< logGateway: { warn: vi.fn(), debug: vi.fn(), - } as GatewayRequestContext["logGateway"], + } as unknown as GatewayRequestContext["logGateway"], }; }