diff --git a/src/google/adk/tools/openapi_tool/openapi_spec_parser/openapi_toolset.py b/src/google/adk/tools/openapi_tool/openapi_spec_parser/openapi_toolset.py index dfe0b18..6bd0f08 100644 --- a/src/google/adk/tools/openapi_tool/openapi_spec_parser/openapi_toolset.py +++ b/src/google/adk/tools/openapi_tool/openapi_spec_parser/openapi_toolset.py @@ -124,7 +124,7 @@ class OpenAPIToolset: def _load_spec( self, spec_str: str, spec_type: Literal["json", "yaml"] ) -> Dict[str, Any]: - """Loads the OpenAPI spec string into adictionary.""" + """Loads the OpenAPI spec string into a dictionary.""" if spec_type == "json": return json.loads(spec_str) elif spec_type == "yaml": diff --git a/tests/integration/test_tools.py b/tests/integration/test_tools.py index dab1487..3966248 100644 --- a/tests/integration/test_tools.py +++ b/tests/integration/test_tools.py @@ -241,7 +241,7 @@ def test_langchain_tool_success(agent_runner: TestRunner): def test_crewai_tool_success(agent_runner: TestRunner): _call_function_and_assert( agent_runner, - "direcotry_read_tool", + "directory_read_tool", "Find all the file paths", "file", )