From 8f660e7139f77981eeb18e84a8d081eb45134cca Mon Sep 17 00:00:00 2001 From: tligui_y Date: Tue, 29 Jul 2025 23:06:51 +0200 Subject: [PATCH] Update tests/test_utils_rangebar.py --- tests/test_utils_rangebar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_utils_rangebar.py b/tests/test_utils_rangebar.py index 4c635cc49..e1a41b7f5 100644 --- a/tests/test_utils_rangebar.py +++ b/tests/test_utils_rangebar.py @@ -97,7 +97,7 @@ import pytest (51, '█' * 5 + '▏' + ' ' * 4), (73, '█' * 7 + '▎' + ' ' * 2), (75, '█' * 7 + '▌' + ' ' * 2), - (90, '█' * 9 + ' ' * 0), + (90, '█' * 9 + ' ' * 1), (100, '█' * 10) ]) def test_each_value_separately(capture_stdout, value, expected_bar_part):