diff --git a/src/plugin-sdk/channel-pairing.test.ts b/src/plugin-sdk/channel-pairing.test.ts index d5a934fb8d4..0f596605590 100644 --- a/src/plugin-sdk/channel-pairing.test.ts +++ b/src/plugin-sdk/channel-pairing.test.ts @@ -62,7 +62,7 @@ describe("createChannelPairingChallengeIssuer", () => { const upsertPairingRequest = vi.fn(async () => ({ code: "654321", created: true })); const { replies, sendPairingReply } = createReplyCollector(); const issueChallenge = createChannelPairingChallengeIssuer({ - channel: "signal", + channel: "quietchat", upsertPairingRequest, }); diff --git a/src/plugins/hooks.security.test.ts b/src/plugins/hooks.security.test.ts index 878be98e736..61c9265c1a3 100644 --- a/src/plugins/hooks.security.test.ts +++ b/src/plugins/hooks.security.test.ts @@ -7,7 +7,7 @@ import type { PluginHookBeforeToolCallResult, PluginHookMessageSendingResult } f const toolEvent = { toolName: "bash", params: { command: "echo hello" } }; const toolCtx = { toolName: "bash" }; const messageEvent = { to: "user-1", content: "hello" }; -const messageCtx = { channelId: "telegram" }; +const messageCtx = { channelId: "forum" }; async function runBeforeToolCallWithHooks( registry: PluginRegistry,