update test comments

This commit is contained in:
A.K.M. Adib
2026-03-19 11:04:12 -04:00
parent 7cef2fe0a4
commit 6325236a6c
@@ -449,12 +449,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.');
});