From 3b1be1a08c22b7db452797c7e244a5399e964681 Mon Sep 17 00:00:00 2001 From: Vincent Koc Date: Sat, 7 Mar 2026 16:07:25 -0800 Subject: [PATCH] Plugin SDK: align allowFrom helper test input --- src/plugin-sdk/channel-config-helpers.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugin-sdk/channel-config-helpers.test.ts b/src/plugin-sdk/channel-config-helpers.test.ts index 1f81bc0d744..3a432006b6b 100644 --- a/src/plugin-sdk/channel-config-helpers.test.ts +++ b/src/plugin-sdk/channel-config-helpers.test.ts @@ -7,7 +7,7 @@ import { describe("mapAllowFromEntries", () => { it("coerces allowFrom entries to strings", () => { - expect(mapAllowFromEntries(["user", 42, null])).toEqual(["user", "42", "null"]); + expect(mapAllowFromEntries(["user", 42])).toEqual(["user", "42"]); }); it("returns empty list for missing input", () => {