From 952fd6d53a52d669e0579d840785f133d4eb0ab4 Mon Sep 17 00:00:00 2001 From: tligui_y Date: Tue, 29 Jul 2025 18:41:45 +0200 Subject: [PATCH] Update tests/test_utils_printing.py --- tests/test_utils_printing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_utils_printing.py b/tests/test_utils_printing.py index 267ef7076..197e44eaf 100644 --- a/tests/test_utils_printing.py +++ b/tests/test_utils_printing.py @@ -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"