update test comments

This commit is contained in:
A.K.M. Adib
2026-03-19 11:04:12 -04:00
parent d5e3a40c96
commit 4516a3f0ab
@@ -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.');
});