Skip to content

Commit 3b068b9

Browse files
committed
fix: Fix integration test
1 parent ad131cf commit 3b068b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/toolbox-langchain/tests/test_e2e.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ def test_run_tool_wrong_auth(self, toolbox, auth_token2):
286286
)
287287
auth_tool = tool.add_auth_token_getter("my-test-auth", lambda: auth_token2)
288288
with pytest.raises(
289-
ToolException,
289+
Exception,
290290
match="tool invocation not authorized. Please make sure your specify correct auth headers",
291291
):
292292
auth_tool.invoke({"id": "2"})

0 commit comments

Comments
 (0)