Skip to content

Commit 4d7745e

Browse files
committed
fixed unit test
1 parent 354f23b commit 4d7745e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

backend/tests/unit/onyx/chat/test_answer.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -323,9 +323,12 @@ def test_answer_with_search_no_tool_calling(
323323
== mock_search_tool.build_next_prompt.return_value.build.return_value
324324
)
325325

326+
user_message = (
327+
answer_instance.graph_inputs.prompt_builder.get_user_message_content()
328+
)
326329
# Verify that get_args_for_non_tool_calling_llm was called on the mock_search_tool
327330
mock_search_tool.get_args_for_non_tool_calling_llm.assert_called_once_with(
328-
QUERY, [], answer_instance.graph_config.tooling.primary_llm
331+
user_message, [], answer_instance.graph_config.tooling.primary_llm
329332
)
330333

331334
# Verify that the search tool's run method was called

0 commit comments

Comments
 (0)