We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5be5d1 commit 629ea3cCopy full SHA for 629ea3c
tests/ut/core/component/tool/utils.py
@@ -28,7 +28,7 @@ async def check_server_working(
28
assert len(tools) == len(expected_tools)
29
for t in expected_tools:
30
output = await client.execute_tool(t, expected_tools.get(t).get("input"))
31
- assert output == expected_tools.get(t).get("output")
+ assert output.content == expected_tools.get(t).get("output")
32
return True
33
34
0 commit comments