test: remove redundant default-account normalization case

This commit is contained in:
Peter Steinberger
2026-02-16 07:56:41 +00:00
parent 35b6ccd62c
commit 4aab640fd1

View File

@@ -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");
});