From 91ebffa9da32dd97340f4ef76e330fc63983c552 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Fri, 17 Apr 2026 12:12:26 +0900 Subject: [PATCH] fix(test): update atlas test to expect task_id parameter instead of session_id verification-reminders.ts was updated to use task(task_id=...) but the 'should ignore extracted session ids' test still expected the old task(session_id=...) format, causing a consistent CI failure on dev. Fixes the pre-existing test failure unrelated to any code changes. --- src/hooks/atlas/index.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/hooks/atlas/index.test.ts b/src/hooks/atlas/index.test.ts index 0f9e7d605..20fb02fc1 100644 --- a/src/hooks/atlas/index.test.ts +++ b/src/hooks/atlas/index.test.ts @@ -957,7 +957,8 @@ session_id: ses_untrusted_999 const updatedState = readBoulderState(TEST_DIR) expect(updatedState?.task_sessions?.["todo:1"]).toBeUndefined() expect(output.output).not.toContain('task(session_id="ses_untrusted_999"') - expect(output.output).toContain('task(session_id=""') + expect(output.output).not.toContain('task(task_id="ses_untrusted_999"') + expect(output.output).toContain('task(task_id=""') cleanupMessageStorage(sessionID) })