Fix remaining Black formatting in conftest.py

This commit is contained in:
佐藤優一 2025-08-11 10:51:30 +09:00
parent 12370845eb
commit 36ca27052f
1 changed files with 2 additions and 2 deletions

View File

@ -31,12 +31,12 @@ def mock_llm():
"""Mock LLM for testing."""
mock = Mock()
mock.model_name = "test-model"
# Create a mock result with tool_calls attribute
mock_result = Mock()
mock_result.content = "Test response"
mock_result.tool_calls = [] # Add tool_calls attribute for len() check
mock.invoke.return_value = mock_result
mock.bind_tools.return_value = mock
return mock