File tree Expand file tree Collapse file tree
toolbox-adk/tests/integration Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ,
Original file line number Diff line number Diff line change 3131@pytest_asyncio .fixture (scope = "function" )
3232async 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 :
Original file line number Diff line number Diff line change 3333)
3434async 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 :
Original file line number Diff line number Diff line change 2525@pytest .fixture (scope = "module" )
2626def 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 :
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments