Skip to content

Commit 0961a6c

Browse files
committed
fix(langchain): Fix e2e tests
1 parent ce3f93c commit 0961a6c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

packages/toolbox-langchain/tests/test_e2e.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,14 +75,15 @@ async def test_aload_toolset_specific(
7575

7676
async def test_aload_toolset_all(self, toolbox):
7777
toolset = await toolbox.aload_toolset()
78-
assert len(toolset) == 6
78+
assert len(toolset) == 7
7979
tool_names = [
8080
"get-n-rows",
8181
"get-row-by-id",
8282
"get-row-by-id-auth",
8383
"get-row-by-email-auth",
8484
"get-row-by-content-auth",
8585
"search-rows",
86+
"process-data",
8687
]
8788
for tool in toolset:
8889
name = tool._ToolboxTool__core_tool.__name__
@@ -221,14 +222,15 @@ def test_load_toolset_specific(
221222

222223
def test_aload_toolset_all(self, toolbox):
223224
toolset = toolbox.load_toolset()
224-
assert len(toolset) == 6
225+
assert len(toolset) == 7
225226
tool_names = [
226227
"get-n-rows",
227228
"get-row-by-id",
228229
"get-row-by-id-auth",
229230
"get-row-by-email-auth",
230231
"get-row-by-content-auth",
231232
"search-rows",
233+
"process-data",
232234
]
233235
for tool in toolset:
234236
name = tool._ToolboxTool__core_tool.__name__

0 commit comments

Comments
 (0)