From 4aab640fd1a76504bbfbdaa02905101856891dd9 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Mon, 16 Feb 2026 07:56:41 +0000 Subject: [PATCH] test: remove redundant default-account normalization case --- src/line/accounts.test.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/line/accounts.test.ts b/src/line/accounts.test.ts index 69a2e5480..08c57df0b 100644 --- a/src/line/accounts.test.ts +++ b/src/line/accounts.test.ts @@ -135,11 +135,6 @@ describe("LINE accounts", () => { }); describe("normalizeAccountId", () => { - it("normalizes undefined and literal default", () => { - expect(normalizeAccountId(undefined)).toBe(DEFAULT_ACCOUNT_ID); - expect(normalizeAccountId("default")).toBe(DEFAULT_ACCOUNT_ID); - }); - it("trims and lowercases account ids", () => { expect(normalizeAccountId(" Business ")).toBe("business"); });