From 02f1e23f3566b1fe02f5cb27e6ecd30bb54fe3a1 Mon Sep 17 00:00:00 2001 From: Brian Krabach Date: Sat, 4 Apr 2026 07:11:04 -0700 Subject: [PATCH] style: auto-format test_frontend_js.py with ruff --- muxplex/tests/test_frontend_js.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/muxplex/tests/test_frontend_js.py b/muxplex/tests/test_frontend_js.py index 5cdee75..5ef8119 100644 --- a/muxplex/tests/test_frontend_js.py +++ b/muxplex/tests/test_frontend_js.py @@ -2513,9 +2513,7 @@ def test_update_pill_bell_uses_session_key_or_name() -> None: assert "_viewingRemoteId" in body, ( "updatePillBell must reference _viewingRemoteId to build viewingKey" ) - assert "viewingKey" in body, ( - "updatePillBell must define a viewingKey variable" - ) + assert "viewingKey" in body, "updatePillBell must define a viewingKey variable" # Must compare using sessionKey || s.name (not just s.name) assert "sessionKey" in body, ( "updatePillBell must compare using s.sessionKey || s.name (not just s.name)" @@ -2536,9 +2534,7 @@ def test_update_session_pill_uses_session_key_or_name() -> None: assert "_viewingRemoteId" in body, ( "updateSessionPill must reference _viewingRemoteId to build viewingKey" ) - assert "viewingKey" in body, ( - "updateSessionPill must define a viewingKey variable" - ) + assert "viewingKey" in body, "updateSessionPill must define a viewingKey variable" # Must compare using sessionKey || s.name (not just s.name) assert "sessionKey" in body, ( "updateSessionPill must compare using s.sessionKey || s.name (not just s.name)"