Skip to content

Commit e86367f

Browse files
committed
Fixed ruff
1 parent a9b3c7c commit e86367f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/frontend/test_theme.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ class TestGetContrastForeground:
8989
def test_light_bg_returns_black(self) -> None:
9090
assert get_contrast_foreground("#ffffff") == "#000000"
9191
assert get_contrast_foreground("#cccccc") == "#000000"
92-
# Use hex to avoid platform differences (tkinter/matplotlib parse "lime green" differently on Linux CI)
92+
# Hex avoids platform differences (named colors parse differently on Linux CI)
9393
assert get_contrast_foreground("#32cd32") == "#000000" # lime green
9494

9595
def test_dark_bg_returns_white(self) -> None:

0 commit comments

Comments
 (0)