From 800d1051a79232af0e64fd0d04180b366b894ec2 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 15 Mar 2026 20:46:01 +0000 Subject: [PATCH 1/2] Initial plan From fe48e2aedc6cae822cd06a85293833ce103ebcce Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 15 Mar 2026 20:49:52 +0000 Subject: [PATCH 2/2] test: fix webdav localhost assertion to match actual error message Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com> --- tests/test_api_integrations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_api_integrations.py b/tests/test_api_integrations.py index fd5070ff..90d1c1f3 100644 --- a/tests/test_api_integrations.py +++ b/tests/test_api_integrations.py @@ -969,7 +969,7 @@ class TestConnectionTestEndpoint: assert resp.status_code == 200 data = resp.json() assert data["success"] is False - assert "localhost" in data["message"].lower() + assert "internal" in data["message"].lower() or "private" in data["message"].lower() def test_test_webdav_blocks_file_scheme(self, int_client): """WebDAV test blocks file:// scheme."""