Skip to content

Commit 69a2776

Browse files
committed
chore: Delint
1 parent e0b08af commit 69a2776

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

packages/toolbox-core/tests/test_e2e.py

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -254,9 +254,7 @@ async def test_run_tool_with_optional_param_omitted(self, toolbox: ToolboxClient
254254
"""Invoke a tool providing only the required parameter."""
255255
tool = await toolbox.load_tool("search-rows")
256256

257-
response = await tool(
258-
259-
)
257+
response = await tool(email="[email protected]")
260258
assert isinstance(response, str)
261259
assert 'email="[email protected]"' in response
262260
assert "row1" not in response
@@ -270,9 +268,7 @@ async def test_run_tool_with_optional_data_provided(self, toolbox: ToolboxClient
270268
"""Invoke a tool providing both required and optional parameters."""
271269
tool = await toolbox.load_tool("search-rows")
272270

273-
response = await tool(
274-
email="[email protected]", data="row3"
275-
)
271+
response = await tool(email="[email protected]", data="row3")
276272
assert isinstance(response, str)
277273
assert 'email="[email protected]"' in response
278274
assert "row1" not in response
@@ -286,9 +282,7 @@ async def test_run_tool_with_optional_id_provided(self, toolbox: ToolboxClient):
286282
"""Invoke a tool providing both required and optional parameters."""
287283
tool = await toolbox.load_tool("search-rows")
288284

289-
response = await tool(
290-
email="[email protected]", id=1
291-
)
285+
response = await tool(email="[email protected]", id=1)
292286
assert isinstance(response, str)
293287
assert 'email="[email protected]"' in response
294288
assert "row1" in response

0 commit comments

Comments
 (0)