From 708050adc225f32832bb6e6b9e9b97186f2a5eef Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 24 Jan 2026 12:43:59 +0000 Subject: [PATCH 1/2] Initial plan From 5345d48b947e91c3eba552f1c9f5b42b4929de3e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 24 Jan 2026 12:46:56 +0000 Subject: [PATCH 2/2] Fix test_job_description_cleanup by meeting 50-char minimum Co-authored-by: HrishikeshUchake <135912491+HrishikeshUchake@users.noreply.github.com> --- tests/test_comprehensive.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_comprehensive.py b/tests/test_comprehensive.py index e9e3ebf..0370126 100644 --- a/tests/test_comprehensive.py +++ b/tests/test_comprehensive.py @@ -64,7 +64,7 @@ def test_invalid_job_description_too_short(self): def test_job_description_cleanup(self): """Test job description cleanup""" - desc = " Job description with spaces " + desc = " Job description with spaces and enough characters to meet minimum requirement " result = InputValidator.validate_job_description(desc) assert result == desc.strip()