Jeremiah Lowin commited on
Commit
3cab9c3
·
1 Parent(s): 388409a

Update test_tool.py

Browse files
Files changed (1) hide show
  1. tests/tools/test_tool.py +1 -1
tests/tools/test_tool.py CHANGED
@@ -80,7 +80,7 @@ class TestToolFromFunction:
80
  ):
81
  Tool.from_function(lambda x: x)
82
 
83
- def test_no_private_arguments(self):
84
  def add(_a: int, _b: int) -> int:
85
  """Add two numbers."""
86
  return _a + _b
 
80
  ):
81
  Tool.from_function(lambda x: x)
82
 
83
+ def test_private_arguments(self):
84
  def add(_a: int, _b: int) -> int:
85
  """Add two numbers."""
86
  return _a + _b