From a42a6a3a3d90dd10ce4ad47a595b418bc518f67a Mon Sep 17 00:00:00 2001 From: Marc J Saint-jour <82672745+Junebugg1214@users.noreply.github.com> Date: Thu, 12 Mar 2026 19:35:48 -0400 Subject: [PATCH] fix: address PR CI failures for Cortex integration --- src/auto-reply/reply/agent-runner.misc.runreplyagent.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auto-reply/reply/agent-runner.misc.runreplyagent.test.ts b/src/auto-reply/reply/agent-runner.misc.runreplyagent.test.ts index 2bfbd42c270..088deae6b35 100644 --- a/src/auto-reply/reply/agent-runner.misc.runreplyagent.test.ts +++ b/src/auto-reply/reply/agent-runner.misc.runreplyagent.test.ts @@ -3,6 +3,7 @@ import fs from "node:fs/promises"; import os from "node:os"; import path from "node:path"; import { afterEach, beforeEach, describe, expect, it, vi } from "vitest"; +import { BILLING_ERROR_USER_MESSAGE } from "../../agents/pi-embedded-helpers.js"; import type { SessionEntry } from "../../config/sessions.js"; import { loadSessionStore, saveSessionStore } from "../../config/sessions.js"; import { onAgentEvent } from "../../infra/agent-events.js"; @@ -10,7 +11,6 @@ import { peekSystemEvents, resetSystemEventsForTest } from "../../infra/system-e import type { TemplateContext } from "../templating.js"; import type { FollowupRun, QueueSettings } from "./queue.js"; import { createMockTypingController } from "./test-helpers.js"; -import { BILLING_ERROR_USER_MESSAGE } from "../../agents/pi-embedded-helpers.js"; const runEmbeddedPiAgentMock = vi.fn(); const runCliAgentMock = vi.fn();