From 91b801404a4a20156f82439b37d4fbd634009bfd Mon Sep 17 00:00:00 2001 From: Ben Browning Date: Thu, 9 Oct 2025 14:10:43 -0400 Subject: [PATCH] [Chore]: One pythonic tool parser test uses the wrong parser This fixes an issue pointed out by Gemini on a separate PR, where the `test_pythonic_tool_parser.py` was accidentally testing against the `llama4_pythonic` parser instead of the `pythonic` parser in one of its tests. Signed-off-by: Ben Browning --- .../openai/tool_parsers/test_pythonic_tool_parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/entrypoints/openai/tool_parsers/test_pythonic_tool_parser.py b/tests/entrypoints/openai/tool_parsers/test_pythonic_tool_parser.py index ccd6abbac4c9..d7b4051ea572 100644 --- a/tests/entrypoints/openai/tool_parsers/test_pythonic_tool_parser.py +++ b/tests/entrypoints/openai/tool_parsers/test_pythonic_tool_parser.py @@ -210,7 +210,7 @@ def test_streaming_tool_call_with_large_steps(): def test_regex_timeout_handling(streaming: bool): """test regex timeout is handled gracefully""" mock_tokenizer = MagicMock() - tool_parser: ToolParser = ToolParserManager.get_tool_parser("llama4_pythonic")( + tool_parser: ToolParser = ToolParserManager.get_tool_parser("pythonic")( mock_tokenizer )