From 4516a3f0ab27316ff77b3739044d4d3ee6f67352 Mon Sep 17 00:00:00 2001 From: "A.K.M. Adib" Date: Thu, 19 Mar 2026 11:04:12 -0400 Subject: [PATCH] update test comments --- packages/core/src/tools/exit-plan-mode.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/core/src/tools/exit-plan-mode.test.ts b/packages/core/src/tools/exit-plan-mode.test.ts index d2cf90f80d..bddb7d0607 100644 --- a/packages/core/src/tools/exit-plan-mode.test.ts +++ b/packages/core/src/tools/exit-plan-mode.test.ts @@ -415,12 +415,12 @@ Ask the user for specific feedback on how to improve the plan.`, }); describe('validateToolParams', () => { - it('should reject empty plan_path', () => { + it('should reject empty plan_filename', () => { const result = tool.validateToolParams({ plan_filename: '' }); expect(result).toBe('plan_filename is required.'); }); - it('should reject whitespace-only plan_path', () => { + it('should reject whitespace-only plan_filename', () => { const result = tool.validateToolParams({ plan_filename: ' ' }); expect(result).toBe('plan_filename is required.'); });