diff --git a/src/cli/install.test.ts b/src/cli/install.test.ts index 87631fdc1..a83f48c79 100644 --- a/src/cli/install.test.ts +++ b/src/cli/install.test.ts @@ -108,7 +108,7 @@ describe("install CLI - binary check behavior", () => { // then opencode.json should have plugin entry const config = JSON.parse(readFileSync(configPath, "utf-8")) expect(config.plugin).toBeDefined() - expect(config.plugin.some((p: string) => p.includes("oh-my-openagent"))).toBe(true) + expect(config.plugin.some((p: string) => p.includes("oh-my-opencode"))).toBe(true) // then exit code should be 0 (success) expect(exitCode).toBe(0)