From d8f4873df414218e1cf0cdd9a48dfa7407ea43f1 Mon Sep 17 00:00:00 2001 From: Antonio Date: Fri, 20 Mar 2026 11:23:34 -0300 Subject: [PATCH] fix(test): use double cast for GatewayClient in cron caller options test ConnectParams schema type changed upstream; use 'as unknown as GatewayClient' to safely construct the test fixture. --- src/gateway/server-methods/cron.caller-options.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gateway/server-methods/cron.caller-options.test.ts b/src/gateway/server-methods/cron.caller-options.test.ts index bef78aabb66..20496958efd 100644 --- a/src/gateway/server-methods/cron.caller-options.test.ts +++ b/src/gateway/server-methods/cron.caller-options.test.ts @@ -16,7 +16,7 @@ function makeClient(scopes: string[]): GatewayClient { }, scopes, }, - } as GatewayClient; + } as unknown as GatewayClient; } describe("resolveCronCallerOptions", () => {