From 66a6f94fbc5a1bc6487159dcc10b1e3359b386e1 Mon Sep 17 00:00:00 2001 From: Jack Wotherspoon Date: Fri, 16 May 2025 13:20:12 -0700 Subject: [PATCH] Copybara import of the project: -- aa863ca851d4c689fbdb431d91189d5ebbc59932 by Jack Wotherspoon : chore: fix variable name in test COPYBARA_INTEGRATE_REVIEW=https://github.com/google/adk-python/pull/769 from jackwotherspoon:test-fix aa863ca851d4c689fbdb431d91189d5ebbc59932 PiperOrigin-RevId: 759731577 --- .../test_application_integration_toolset.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unittests/tools/application_integration_tool/test_application_integration_toolset.py b/tests/unittests/tools/application_integration_tool/test_application_integration_toolset.py index a95e29f..c642441 100644 --- a/tests/unittests/tools/application_integration_tool/test_application_integration_toolset.py +++ b/tests/unittests/tools/application_integration_tool/test_application_integration_toolset.py @@ -532,7 +532,7 @@ def test_init_with_connection_and_custom_auth( location, connection=connection_name, actions=actions_list, - tool_name=tool_name, + tool_name_prefix=tool_name, tool_instructions=tool_instructions, auth_scheme=oauth2_scheme, auth_credential=auth_credential, @@ -600,7 +600,7 @@ def test_init_with_connection_with_auth_override_disabled_and_custom_auth( location, connection=connection_name, actions=actions_list, - tool_name=tool_name, + tool_name_prefix=tool_name, tool_instructions=tool_instructions, auth_scheme=oauth2_scheme, auth_credential=auth_credential,