From 0e3ed96c16a6a0fc66926a5460a7dc4ac09a7e23 Mon Sep 17 00:00:00 2001 From: Brian Krabach Date: Wed, 1 Apr 2026 12:48:00 -0700 Subject: [PATCH] refactor: drop unused css=None parameters in 3 CSS test functions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit test_css_session_grid, test_css_tile_height, and test_css_bell_indicator each declared a css=None parameter that was immediately overwritten with read_css(). The parameter was dead API surface — never passed by any caller. Removed the parameter from all three signatures. --- muxplex/tests/test_frontend_css.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/muxplex/tests/test_frontend_css.py b/muxplex/tests/test_frontend_css.py index ddc45a5..a9e5bc3 100644 --- a/muxplex/tests/test_frontend_css.py +++ b/muxplex/tests/test_frontend_css.py @@ -20,19 +20,19 @@ def test_css_design_tokens(): assert "--t-zoom:" in css -def test_css_session_grid(css=None): +def test_css_session_grid(): css = read_css() assert "auto-fill" in css assert "minmax" in css -def test_css_tile_height(css=None): +def test_css_tile_height(): css = read_css() assert ".session-tile" in css assert "var(--tile-height)" in css -def test_css_bell_indicator(css=None): +def test_css_bell_indicator(): css = read_css() assert "bell-pulse" in css assert ".session-tile--bell" in css