chore(engine): silence unused-param warning in worktree-acquisition test

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
gsxdsm
2026-05-23 03:06:11 -07:00
parent 51fc826199
commit b1cf6fa3d1

View File

@@ -334,7 +334,7 @@ describe("acquireTaskWorktree foreign start-point warning", () => {
const warn = vi.fn();
const logEntry = vi.fn().mockResolvedValue(undefined);
const execMock: any = (command: string, _opts: any, cb: any) => cb(null, "", "");
const execMock: any = (_command: string, _opts: any, cb: any) => cb(null, "", "");
execMock[promisify.custom] = (command: string) => {
if (command.startsWith("git rev-parse --verify \"fusion/fn-4367^")) {
return Promise.resolve({ stdout: "deadbeefdeadbeef\n", stderr: "" });