Skip to content

Commit e343e78

Browse files
committed
test fix
1 parent 7a5a1bd commit e343e78

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/toolbox-core/tests/test_e2e.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,10 +152,10 @@ async def test_run_tool_auth(self, toolbox, auth_token1):
152152
async def test_run_tool_param_auth_no_auth(self, toolbox):
153153
"""Tests running a tool with a param requiring auth, without auth."""
154154
tool = await toolbox.load_tool("get-row-by-email-auth")
155+
# TODO: Change match to {my-auth-service3} instead of email after fix in PR
155156
with pytest.raises(
156157
Exception,
157-
match="provided parameters were invalid: error parsing authenticated parameter "
158-
'"email": missing or invalid authentication header',
158+
match="One of more of the following authn services are required to invoke this tool: email",
159159
):
160160
await tool()
161161

0 commit comments

Comments
 (0)