Skip to content

Commit 7b63ac4

Browse files
committed
spelling: repetitive
Signed-off-by: Josh Soref <[email protected]>
1 parent 74e4189 commit 7b63ac4

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

tests/integration/fixture/tool_agent/agent.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,11 +90,11 @@ def complex_function_list_dict(
9090
raise ValueError("Wrong param")
9191

9292

93-
def repetive_call_1(param: str):
94-
return f"Call repetive_call_2 tool with param {param + '_repetive'}"
93+
def repetitive_call_1(param: str):
94+
return f"Call repetitive_call_2 tool with param {param + '_repetitive'}"
9595

9696

97-
def repetive_call_2(param: str):
97+
def repetitive_call_2(param: str):
9898
return param
9999

100100

@@ -194,8 +194,8 @@ def repetive_call_2(param: str):
194194
list_str_param_function,
195195
return_list_str_function,
196196
# complex_function_list_dict,
197-
repetive_call_1,
198-
repetive_call_2,
197+
repetitive_call_1,
198+
repetitive_call_2,
199199
test_case_retrieval,
200200
valid_rag_retrieval,
201201
invalid_rag_retrieval,

tests/integration/test_tools.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,12 +106,12 @@ def test_complex_function_calls_success(agent_runner: TestRunner):
106106
[{"agent": tool_agent.agent.root_agent}],
107107
indirect=True,
108108
)
109-
def test_repetive_call_success(agent_runner: TestRunner):
109+
def test_repetitive_call_success(agent_runner: TestRunner):
110110
_call_function_and_assert(
111111
agent_runner,
112-
"repetive_call_1",
112+
"repetitive_call_1",
113113
"test",
114-
"test_repetive",
114+
"test_repetitive",
115115
)
116116

117117

0 commit comments

Comments
 (0)