From a984252f7ab5bc8dbc998ad7e2aa237a9c41a7af Mon Sep 17 00:00:00 2001 From: Hector Flores Date: Thu, 29 Jan 2026 11:30:02 -0600 Subject: [PATCH] style: fix formatting --- src/agents/cli-backends.ts | 2 +- src/agents/copilot-credentials.test.ts | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/src/agents/cli-backends.ts b/src/agents/cli-backends.ts index b076ca73a..731669820 100644 --- a/src/agents/cli-backends.ts +++ b/src/agents/cli-backends.ts @@ -80,7 +80,7 @@ const COPILOT_MODEL_ALIASES: Record = { "gpt-4.1-mini": "gpt-4.1-mini", "gpt-4.1-nano": "gpt-4.1-nano", "gpt-4o": "gpt-4o", - "o1": "o1", + o1: "o1", "o1-mini": "o1-mini", "o3-mini": "o3-mini", "claude-sonnet-4.5": "claude-sonnet-4.5", diff --git a/src/agents/copilot-credentials.test.ts b/src/agents/copilot-credentials.test.ts index 1cfabf75a..8d93649e3 100644 --- a/src/agents/copilot-credentials.test.ts +++ b/src/agents/copilot-credentials.test.ts @@ -31,10 +31,7 @@ describe("copilot-credentials", () => { it("uses custom cliPath when provided", () => { const execSync = vi.fn().mockReturnValue("0.0.1"); isCopilotCliInstalled({ cliPath: "/usr/local/bin/copilot", execSync }); - expect(execSync).toHaveBeenCalledWith( - "/usr/local/bin/copilot --version", - expect.any(Object), - ); + expect(execSync).toHaveBeenCalledWith("/usr/local/bin/copilot --version", expect.any(Object)); }); });