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 1394a7f commit fa62622Copy full SHA for fa62622
packages/toolbox-langchain/tests/test_async_tools.py
@@ -327,12 +327,9 @@ async def test_toolbox_tool_call_with_auth_tokens_insecure(
327
result = await tool_with_getter.ainvoke({"param2": 123})
328
assert result == "test-result"
329
330
- modified_core_tool_in_new_tool = (
331
- tool_with_getter._AsyncToolboxTool__core_tool
332
- )
+ modified_core_tool_in_new_tool = tool_with_getter._AsyncToolboxTool__core_tool
333
assert (
334
- modified_core_tool_in_new_tool._ToolboxTool__base_url
335
- == "http://test-url"
+ modified_core_tool_in_new_tool._ToolboxTool__base_url == "http://test-url"
336
)
337
338
modified_core_tool_in_new_tool._ToolboxTool__url
0 commit comments