We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e94be7b commit ffc5838Copy full SHA for ffc5838
packages/toolbox-core/tests/test_tool.py
@@ -196,7 +196,7 @@ async def test_bound_parameter_static_value_call(
196
197
@pytest.fixture
198
def tool_with_bound_arg2(self, tool: ToolboxTool) -> ToolboxTool:
199
- new_tool = tool.bind_params({"opt_arg": lambda: 88})
+ new_tool = tool.bind_params({"opt_arg": lambda: 88}) # Tried passing a string callable and it failed
200
return new_tool
201
202
@pytest.mark.asyncio
0 commit comments