Skip to content

Commit 84e66a6

Browse files
committed
fix error message
1 parent cc7ccad commit 84e66a6

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/toolbox-core/tests/test_e2e.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,10 +151,9 @@ async def test_run_tool_auth(self, toolbox, auth_token1):
151151
async def test_run_tool_param_auth_no_auth(self, toolbox):
152152
"""Tests running a tool with a param requiring auth, without auth."""
153153
tool = await toolbox.load_tool("get-row-by-email-auth")
154-
# TODO: Change match to {my-auth-service3} instead of email after fix in PR
155154
with pytest.raises(
156155
Exception,
157-
match="One of more of the following authn services are required to invoke this tool: my-test-auth",
156+
match="One or more of the following authn services are required to invoke this tool: my-test-auth",
158157
):
159158
await tool()
160159

0 commit comments

Comments
 (0)