Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -197,7 +197,9 @@ def test_vertexai_get_llm_tools(test_tool: Tool) -> None:
197
197
@patch ("neo4j_graphrag.llm.vertexai_llm.VertexAILLM._parse_tool_response" )
198
198
@patch ("neo4j_graphrag.llm.vertexai_llm.VertexAILLM._call_llm" )
199
199
def test_vertexai_invoke_with_tools (
200
- mock_call_llm : Mock , mock_parse_tool : Mock , test_tool : Tool ,
200
+ mock_call_llm : Mock ,
201
+ mock_parse_tool : Mock ,
202
+ test_tool : Tool ,
201
203
) -> None :
202
204
# Mock the model call response
203
205
tool_call_mock = MagicMock ()
@@ -245,7 +247,9 @@ def test_vertexai_call_llm_with_tools(mock_model: Mock, test_tool: Tool) -> None
245
247
@patch ("neo4j_graphrag.llm.vertexai_llm.VertexAILLM._parse_tool_response" )
246
248
@patch ("neo4j_graphrag.llm.vertexai_llm.VertexAILLM._call_llm" )
247
249
def test_vertexai_ainvoke_with_tools (
248
- mock_call_llm : Mock , mock_parse_tool : Mock , test_tool : Tool ,
250
+ mock_call_llm : Mock ,
251
+ mock_parse_tool : Mock ,
252
+ test_tool : Tool ,
249
253
) -> None :
250
254
# Mock the model call response
251
255
tool_call_mock = MagicMock ()
0 commit comments