Skip to content

Commit d610934

Browse files
committed
chore: Fix e2e tests
1 parent c9adece commit d610934

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/toolbox-core/tests/test_e2e.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ async def test_run_tool_with_missing_required_param(self, toolbox: ToolboxClient
325325
async def test_run_tool_with_required_param_null(self, toolbox: ToolboxClient):
326326
"""Invoke a tool without its required parameter."""
327327
tool = await toolbox.load_tool("search-rows")
328-
with pytest.raises(ValidationError, match="missing a required argument: 'email'"):
328+
with pytest.raises(ValidationError, match="email"):
329329
await tool(email=None, id=5, data="row5")
330330

331331
async def test_run_tool_with_all_default_params(self, toolbox: ToolboxClient):

0 commit comments

Comments
 (0)