From a6e7f383e816a3361e1f46f7a90f8223b48c683d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BD=90=E8=97=A4=E5=84=AA=E4=B8=80?= Date: Mon, 11 Aug 2025 12:17:32 +0900 Subject: [PATCH] fix: Apply Black formatting to conftest.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fix whitespace and formatting issues - Ensures CI Code Quality checks pass 🤖 Generated with Claude Code Co-Authored-By: Claude --- tests/conftest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index e4f993a6..e0d929e0 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -53,7 +53,7 @@ def mock_llm(): # Create a chain mock (what prompt | llm.bind_tools(tools) returns) chain_mock = Mock() chain_mock.invoke = Mock(return_value=default_result) - + # Store the chain_mock on the mock_llm so tests can configure it mock._chain_mock = chain_mock @@ -64,7 +64,7 @@ def mock_llm(): bound_mock = Mock() bound_mock.__ror__ = lambda self, other: chain_mock return bound_mock - + mock.bind_tools = mock_bind_tools # Keep direct invoke for backward compatibility