Skip to content

Commit 629ea3c

Browse files
committed
feat(arkiect): fix test
1 parent b5be5d1 commit 629ea3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/ut/core/component/tool/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ async def check_server_working(
2828
assert len(tools) == len(expected_tools)
2929
for t in expected_tools:
3030
output = await client.execute_tool(t, expected_tools.get(t).get("input"))
31-
assert output == expected_tools.get(t).get("output")
31+
assert output.content == expected_tools.get(t).get("output")
3232
return True
3333

3434

0 commit comments

Comments
 (0)