This commit is contained in:
claudi 2026-02-19 15:16:05 +01:00
parent a20f703554
commit d799339d93
7 changed files with 29 additions and 29 deletions

View file

@ -19,7 +19,7 @@ def test_config(tmp_path):
log_file=None,
allowed_roots=[tmp_path],
allowed_urls=[],
webapp_url="https://wps.agravity.io/",
webapp_url="https://dev.agravity.io/",
url_mappings=[],
check_file_exists=True,
)
@ -135,7 +135,7 @@ class TestDragInterceptorAzureURL:
webapp_url="https://test.com/",
url_mappings=[
URLMapping(
url_prefix="https://wpsagravitystg.file.core.windows.net/wpsagravitysync/",
url_prefix="https://devagravitystg.file.core.windows.net/devagravitysync/",
local_path=str(tmp_path)
)
],
@ -144,7 +144,7 @@ class TestDragInterceptorAzureURL:
interceptor = DragInterceptor(config)
# Azure URL
azure_url = "https://wpsagravitystg.file.core.windows.net/wpsagravitysync/test.png"
azure_url = "https://devagravitystg.file.core.windows.net/devagravitysync/test.png"
# Mock the drag operation
with patch("webdrop_bridge.core.drag_interceptor.QDrag") as mock_drag: