style: auto-format test_frontend_js.py with ruff

This commit is contained in:
Brian Krabach
2026-04-04 07:11:04 -07:00
parent 094ccd7d81
commit 02f1e23f35
+2 -6
View File
@@ -2513,9 +2513,7 @@ def test_update_pill_bell_uses_session_key_or_name() -> None:
assert "_viewingRemoteId" in body, ( assert "_viewingRemoteId" in body, (
"updatePillBell must reference _viewingRemoteId to build viewingKey" "updatePillBell must reference _viewingRemoteId to build viewingKey"
) )
assert "viewingKey" in body, ( assert "viewingKey" in body, "updatePillBell must define a viewingKey variable"
"updatePillBell must define a viewingKey variable"
)
# Must compare using sessionKey || s.name (not just s.name) # Must compare using sessionKey || s.name (not just s.name)
assert "sessionKey" in body, ( assert "sessionKey" in body, (
"updatePillBell must compare using s.sessionKey || s.name (not just s.name)" "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, ( assert "_viewingRemoteId" in body, (
"updateSessionPill must reference _viewingRemoteId to build viewingKey" "updateSessionPill must reference _viewingRemoteId to build viewingKey"
) )
assert "viewingKey" in body, ( assert "viewingKey" in body, "updateSessionPill must define a viewingKey variable"
"updateSessionPill must define a viewingKey variable"
)
# Must compare using sessionKey || s.name (not just s.name) # Must compare using sessionKey || s.name (not just s.name)
assert "sessionKey" in body, ( assert "sessionKey" in body, (
"updateSessionPill must compare using s.sessionKey || s.name (not just s.name)" "updateSessionPill must compare using s.sessionKey || s.name (not just s.name)"