Update tests/test_utils_printing.py
Run CI Tests / test (push) Successful in 30s

This commit is contained in:
2025-07-29 18:41:45 +02:00
parent c41d1feafb
commit 952fd6d53a
+1 -1
View File
@@ -25,7 +25,7 @@ def test_maxstrlen(seq, expected):
assert maxstrlen(seq) == expected
@pytest.mark.parametrize("value,expected", [
(42, 2, # int → "42"
(42, 2), # int → "42"
("hello", 5), # str → "hello"
(False, 5), # bool → "False"
(None, 4), # None → "None"