diff --git a/tests/tools/test_tool.py b/tests/tools/test_tool.py index b0e9d34b2..e0316f81f 100644 --- a/tests/tools/test_tool.py +++ b/tests/tools/test_tool.py @@ -80,7 +80,7 @@ class TestToolFromFunction: ): Tool.from_function(lambda x: x) - def test_no_private_arguments(self): + def test_private_arguments(self): def add(_a: int, _b: int) -> int: """Add two numbers.""" return _a + _b