Update test_tool.py

This commit is contained in:
Jeremiah Lowin 2025-05-04 12:07:47 -04:00
commit 70598d4d7b

View file

@ -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