From 70598d4d7b9b5913128ec68fff832d57143dbeff Mon Sep 17 00:00:00 2001 From: Jeremiah Lowin <153965+jlowin@users.noreply.github.com> Date: Sun, 4 May 2025 12:07:47 -0400 Subject: [PATCH] Update test_tool.py --- tests/tools/test_tool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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