From d055e536101c76a9b1af4a367e1b69fd5f0a15ea Mon Sep 17 00:00:00 2001 From: Broque Thomas <26755000+Nezreka@users.noreply.github.com> Date: Wed, 22 Apr 2026 11:30:39 -0700 Subject: [PATCH] Repoint websocket transport test to core.js after split The websocket init block moved from script.js into core.js in the module split (PR #352). Test was still hardcoded to the old path. --- tests/test_websocket_client_transport.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_websocket_client_transport.py b/tests/test_websocket_client_transport.py index 3ba371cc..b3a0a8f3 100644 --- a/tests/test_websocket_client_transport.py +++ b/tests/test_websocket_client_transport.py @@ -2,7 +2,7 @@ from pathlib import Path def test_websocket_client_prefers_polling_before_websocket(): - script_path = Path(__file__).resolve().parents[1] / "webui" / "static" / "script.js" + script_path = Path(__file__).resolve().parents[1] / "webui" / "static" / "core.js" script = script_path.read_text(encoding="utf-8") assert "transports: ['polling', 'websocket']" in script