From 700ba1e5412fc292d60c8dd6527c54a806333c85 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Mon, 4 May 2026 16:30:06 +0900 Subject: [PATCH] test(unstable-agent-babysitter): align task fixture with sessionId field Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus --- src/hooks/unstable-agent-babysitter/index.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/hooks/unstable-agent-babysitter/index.test.ts b/src/hooks/unstable-agent-babysitter/index.test.ts index ac62a4348..d2f89abb4 100644 --- a/src/hooks/unstable-agent-babysitter/index.test.ts +++ b/src/hooks/unstable-agent-babysitter/index.test.ts @@ -40,9 +40,9 @@ function createBackgroundManager(tasks: BackgroundTask[]) { function createTask(overrides: Partial = {}): BackgroundTask { return { id: "task-1", - sessionID: "bg-1", - parentSessionID: "main-1", - parentMessageID: "msg-1", + sessionId: "bg-1", + parentSessionId: "main-1", + parentMessageId: "msg-1", description: "unstable task", prompt: "run work", agent: "test-agent",