@@ -318,19 +318,19 @@ async def to_thread_side_effect(func, *args, **kwargs_for_func):
318
318
assert mock_core_tool .call_args == call (** kwargs_to_run )
319
319
320
320
def test_toolbox_tool_properties (self , toolbox_tool , mock_core_tool ):
321
- """Tests that the properties correctly proxy to the core tool."""
322
- assert toolbox_tool ._bound_params == mock_core_tool ._bound_params
323
- assert (
324
- toolbox_tool ._required_authn_params == mock_core_tool ._required_authn_params
325
- )
326
- assert (
327
- toolbox_tool ._required_authz_tokens == mock_core_tool ._required_authz_tokens
328
- )
329
- assert (
330
- toolbox_tool ._auth_service_token_getters
331
- == mock_core_tool ._auth_service_token_getters
332
- )
333
- assert toolbox_tool ._client_headers == mock_core_tool ._client_headers
321
+ """Tests that the properties correctly proxy to the core tool."""
322
+ assert toolbox_tool ._bound_params == mock_core_tool ._bound_params
323
+ assert (
324
+ toolbox_tool ._required_authn_params == mock_core_tool ._required_authn_params
325
+ )
326
+ assert (
327
+ toolbox_tool ._required_authz_tokens == mock_core_tool ._required_authz_tokens
328
+ )
329
+ assert (
330
+ toolbox_tool ._auth_service_token_getters
331
+ == mock_core_tool ._auth_service_token_getters
332
+ )
333
+ assert toolbox_tool ._client_headers == mock_core_tool ._client_headers
334
334
335
335
def test_toolbox_tool_add_auth_tokens_deprecated (
336
336
self , auth_toolbox_tool , mock_core_sync_auth_tool
@@ -360,4 +360,4 @@ def test_toolbox_tool_add_auth_token_deprecated(
360
360
mock_core_sync_auth_tool .add_auth_token_getters .assert_called_once_with (
361
361
{"test-auth-source" : get_id_token }
362
362
)
363
- assert isinstance (new_tool , ToolboxTool )
363
+ assert isinstance (new_tool , ToolboxTool )
0 commit comments