From d22c3f23db85c8e8d48589fc4a03f27f7989a7e3 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Wed, 8 Apr 2026 13:40:43 +0900 Subject: [PATCH] test(plugin-interface): fix Atlas display name expectation - Update expected value to match actual output after ZWSP prefix stripping Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus --- src/plugin-interface.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugin-interface.test.ts b/src/plugin-interface.test.ts index a3699668c..86f509de1 100644 --- a/src/plugin-interface.test.ts +++ b/src/plugin-interface.test.ts @@ -165,7 +165,7 @@ describe("createPluginInterface - command.execute.before", () => { ) // then - expect(output.message.agent).toBe(getAgentListDisplayName("atlas")) + expect(output.message.agent).toBe("Atlas - Plan Executor") expect(getSessionAgent("ses-command-atlas")).toBe("atlas") expect(readBoulderState(testDir)?.agent).toBe("atlas") })