Skip to content

Commit c222d25

Browse files
committed
lint
1 parent b50513b commit c222d25

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/toolbox-llamaindex/tests/test_async_tools.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -343,9 +343,9 @@ async def test_toolbox_tool_call_with_auth_tokens_insecure(
343343
modified_core_tool = tool_with_getter._AsyncToolboxTool__core_tool
344344
transport = modified_core_tool._ToolboxTool__transport
345345
session = transport._ToolboxHttpTransport__session
346-
346+
347347
assert transport.base_url == "http://test-url"
348-
348+
349349
session.post.assert_called_once_with(
350350
"http://test-url/api/tool/test_tool/invoke",
351351
json={"param2": 123},
@@ -366,4 +366,4 @@ async def test_toolbox_tool_call_with_invalid_input(self, toolbox_tool):
366366

367367
async def test_toolbox_tool_run_not_implemented(self, toolbox_tool):
368368
with pytest.raises(NotImplementedError):
369-
toolbox_tool.call()
369+
toolbox_tool.call()

0 commit comments

Comments
 (0)