diff --git a/ymir/agents/tests/e2e/test_triage.py b/ymir/agents/tests/e2e/test_triage.py index d6fa1baa..fa5e9b45 100644 --- a/ymir/agents/tests/e2e/test_triage.py +++ b/ymir/agents/tests/e2e/test_triage.py @@ -150,6 +150,22 @@ def testing_factory(gateway_tools, local_tool_options=None): ), ), ), + TriageAgentTestCase( + input="RHEL-152532", + expected_output=TriageOutputSchema( + resolution=Resolution.BACKPORT, + data=BackportData( + package="rsync", + patch_urls=[ + "https://github.com/RsyncProject/rsync/commit/797e17fc4a6f15e3b1756538a9f812b63942686f.patch", + ], + justification="not-implemented", + jira_issue="RHEL-152532", + cve_id="CVE-2025-10158", + fix_version="rhel-10.1.z", + ), + ), + ), ]