Skip to content

Commit 745727c

Browse files
committed
chore: delint
1 parent 2a5da9a commit 745727c

6 files changed

Lines changed: 16 additions & 16 deletions

File tree

packages/toolbox-adk/tests/integration/test_integration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ class TestToolboxAdkIntegration:
5252
async def test_load_toolset_and_run(self):
5353
# Auth: TOOLBOX_IDENTITY for simplicity in this local test as we don't have ADK identity setup.
5454

55-
# Note: The STABLE URL passed here is automatically patched by the
56-
# 'patch_toolbox_client_url' fixture to run against both
55+
# Note: The STABLE URL passed here is automatically patched by the
56+
# 'patch_toolbox_client_url' fixture to run against both
5757
# the STABLE (5000) and DRAFT (5001) servers.
5858
toolset = ToolboxToolset(
5959
server_url=TOOLBOX_SERVER_URL_STABLE,

packages/toolbox-core/tests/test_e2e.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
@pytest_asyncio.fixture(scope="function")
3232
async def toolbox():
3333
"""Creates a ToolboxClient instance shared by all tests in this module."""
34-
# Note: The STABLE URL passed here is automatically patched by the
35-
# 'patch_toolbox_client_url' fixture to run against both
34+
# Note: The STABLE URL passed here is automatically patched by the
35+
# 'patch_toolbox_client_url' fixture to run against both
3636
# the STABLE (5000) and DRAFT (5001) servers.
3737
toolbox = ToolboxClient(TOOLBOX_SERVER_URL_STABLE, protocol=Protocol.MCP)
3838
try:

packages/toolbox-core/tests/test_e2e_mcp.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
)
3434
async def toolbox(request):
3535
"""Creates a ToolboxClient instance shared by all tests in this module."""
36-
# Note: The STABLE URL passed here is automatically patched by the
37-
# 'patch_toolbox_client_url' fixture to run against both
36+
# Note: The STABLE URL passed here is automatically patched by the
37+
# 'patch_toolbox_client_url' fixture to run against both
3838
# the STABLE (5000) and DRAFT (5001) servers.
3939
toolbox = ToolboxClient(TOOLBOX_SERVER_URL_STABLE, protocol=Protocol(request.param))
4040
try:

packages/toolbox-core/tests/test_sync_e2e.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
@pytest.fixture(scope="module")
2626
def toolbox():
2727
"""Creates a ToolboxSyncClient instance shared by all tests in this module."""
28-
# Note: The STABLE URL passed here is automatically patched by the
29-
# 'patch_toolbox_client_url' fixture to run against both
28+
# Note: The STABLE URL passed here is automatically patched by the
29+
# 'patch_toolbox_client_url' fixture to run against both
3030
# the STABLE (5000) and DRAFT (5001) servers.
3131
toolbox = ToolboxSyncClient(TOOLBOX_SERVER_URL_STABLE)
3232
try:

packages/toolbox-langchain/tests/test_e2e.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ class TestE2EClientAsync:
5151
@pytest.fixture(scope="function")
5252
def toolbox(self):
5353
"""Provides a ToolboxClient instance for each test."""
54-
# Note: The STABLE URL passed here is automatically patched by the
55-
# 'patch_toolbox_client_url' fixture to run against both
54+
# Note: The STABLE URL passed here is automatically patched by the
55+
# 'patch_toolbox_client_url' fixture to run against both
5656
# the STABLE (5000) and DRAFT (5001) servers.
5757
toolbox = ToolboxClient(TOOLBOX_SERVER_URL_STABLE)
5858
return toolbox
@@ -209,8 +209,8 @@ class TestE2EClientSync:
209209
@pytest.fixture(scope="session")
210210
def toolbox(self):
211211
"""Provides a ToolboxClient instance for each test."""
212-
# Note: The STABLE URL passed here is automatically patched by the
213-
# 'patch_toolbox_client_url' fixture to run against both
212+
# Note: The STABLE URL passed here is automatically patched by the
213+
# 'patch_toolbox_client_url' fixture to run against both
214214
# the STABLE (5000) and DRAFT (5001) servers.
215215
toolbox = ToolboxClient(TOOLBOX_SERVER_URL_STABLE)
216216
return toolbox

packages/toolbox-llamaindex/tests/test_e2e.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ class TestE2EClientAsync:
5151
@pytest.fixture(scope="function")
5252
def toolbox(self):
5353
"""Provides a ToolboxClient instance for each test."""
54-
# Note: The STABLE URL passed here is automatically patched by the
55-
# 'patch_toolbox_client_url' fixture to run against both
54+
# Note: The STABLE URL passed here is automatically patched by the
55+
# 'patch_toolbox_client_url' fixture to run against both
5656
# the STABLE (5000) and DRAFT (5001) servers.
5757
toolbox = ToolboxClient(TOOLBOX_SERVER_URL_STABLE)
5858
return toolbox
@@ -209,8 +209,8 @@ class TestE2EClientSync:
209209
@pytest.fixture(scope="session")
210210
def toolbox(self):
211211
"""Provides a ToolboxClient instance for each test."""
212-
# Note: The STABLE URL passed here is automatically patched by the
213-
# 'patch_toolbox_client_url' fixture to run against both
212+
# Note: The STABLE URL passed here is automatically patched by the
213+
# 'patch_toolbox_client_url' fixture to run against both
214214
# the STABLE (5000) and DRAFT (5001) servers.
215215
toolbox = ToolboxClient(TOOLBOX_SERVER_URL_STABLE)
216216
return toolbox

0 commit comments

Comments
 (0)