Skip to content

Commit 8023460

Browse files
committed
fix test
1 parent df96f53 commit 8023460

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/toolbox-core/tests/test_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ async def test_load_tool_success(aioresponses, test_tool_str):
9292
assert callable(loaded_tool)
9393
# Assert introspection attributes are set correctly
9494
assert loaded_tool.__name__ == TOOL_NAME
95-
assert loaded_tool.__doc__ == test_tool_str.description
95+
assert loaded_tool.__doc__ == test_tool_str.description + f"\n\nArgs:\n param1 (string): Description of Param1"
9696

9797
# Assert signature inspection
9898
sig = inspect.signature(loaded_tool)

0 commit comments

Comments
 (0)