From 85055772181eda25b47bff33e7e1f4686ac9b085 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Mon, 16 Feb 2026 07:52:08 +0000 Subject: [PATCH] test: remove redundant line account-id env listing case --- src/line/accounts.test.ts | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/line/accounts.test.ts b/src/line/accounts.test.ts index d87d825e8fd..69a2e54803c 100644 --- a/src/line/accounts.test.ts +++ b/src/line/accounts.test.ts @@ -114,15 +114,6 @@ describe("LINE accounts", () => { expect(ids).toContain(DEFAULT_ACCOUNT_ID); }); - - it("returns default from env", () => { - process.env.LINE_CHANNEL_ACCESS_TOKEN = "env-token"; - const cfg: OpenClawConfig = {}; - - const ids = listLineAccountIds(cfg); - - expect(ids).toContain(DEFAULT_ACCOUNT_ID); - }); }); describe("resolveDefaultLineAccountId", () => {