Skip to content

Commit 63bdd91

Browse files
committed
chore: Delint
1 parent 21dd41d commit 63bdd91

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/toolbox-core/tests/test_e2e.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -368,20 +368,20 @@ async def test_run_tool_with_different_email(self, toolbox: ToolboxClient):
368368

369369
response = await tool(email="[email protected]", id=3, data="row3")
370370
assert isinstance(response, str)
371-
assert response == 'null'
371+
assert response == "null"
372372

373373
async def test_run_tool_with_different_data(self, toolbox: ToolboxClient):
374374
"""Invoke a tool providing all parameters but with a different data."""
375375
tool = await toolbox.load_tool("search-rows")
376376

377377
response = await tool(email="[email protected]", id=3, data="row4")
378378
assert isinstance(response, str)
379-
assert response == 'null'
379+
assert response == "null"
380380

381381
async def test_run_tool_with_different_id(self, toolbox: ToolboxClient):
382382
"""Invoke a tool providing all parameters but with a different data."""
383383
tool = await toolbox.load_tool("search-rows")
384384

385385
response = await tool(email="[email protected]", id=4, data="row3")
386386
assert isinstance(response, str)
387-
assert response == 'null'
387+
assert response == "null"

0 commit comments

Comments
 (0)