From 666d1d2d52e65d1cdb4206e60f71d68e87423db3 Mon Sep 17 00:00:00 2001 From: Adam Weidman Date: Thu, 7 May 2026 15:18:47 -0400 Subject: [PATCH] fix(core): fix imports in local-session-invocation test --- .../core/src/agents/local-session-invocation.test.ts | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/packages/core/src/agents/local-session-invocation.test.ts b/packages/core/src/agents/local-session-invocation.test.ts index 9294aae379..ce5967ddcf 100644 --- a/packages/core/src/agents/local-session-invocation.test.ts +++ b/packages/core/src/agents/local-session-invocation.test.ts @@ -5,15 +5,16 @@ */ import { describe, it, expect, vi, beforeEach } from 'vitest'; -import type { - SubagentProgress , +import { AgentTerminateMode, + SubagentActivityErrorType, + SUBAGENT_REJECTED_ERROR_PREFIX, + SUBAGENT_CANCELLED_ERROR_MESSAGE, + type SubagentProgress, type LocalAgentDefinition, type AgentInputs, type SubagentActivityEvent, - SubagentActivityErrorType, - SUBAGENT_REJECTED_ERROR_PREFIX, - SUBAGENT_CANCELLED_ERROR_MESSAGE } from './types.js'; +} from './types.js'; import { LocalSessionInvocation } from './local-session-invocation.js'; import { LocalSubagentSession } from './local-subagent-protocol.js'; import { makeFakeConfig } from '../test-utils/config.js';