From 89e570c16be722d7f6beb90d75a5f1fb5cbf7c70 Mon Sep 17 00:00:00 2001 From: tligui_y Date: Thu, 7 Aug 2025 15:27:14 +0200 Subject: [PATCH] Update tests/test_utils_pv.py --- tests/test_utils_pv.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/test_utils_pv.py b/tests/test_utils_pv.py index ce01a4cf5..09184c03c 100644 --- a/tests/test_utils_pv.py +++ b/tests/test_utils_pv.py @@ -82,7 +82,10 @@ def test_put_with_progress_and_repr(value_new, value_before, expected_color): finally: builtins.print = original_print - print("Aaaaaaa : ", printed_lines) + for lines in printed_lines: + print("Aaaaaaa : ", lines, "\n") + + print("Next \n") cleaned_lines = [strip_ansi(line) for line in printed_lines]