From 2bbc837681de870904f4a70f2d913555d1351f31 Mon Sep 17 00:00:00 2001 From: tligui_y Date: Tue, 29 Jul 2025 19:30:26 +0200 Subject: [PATCH] Update tests/test_utils_printing.py --- tests/test_utils_printing.py | 27 +++++++++------------------ 1 file changed, 9 insertions(+), 18 deletions(-) diff --git a/tests/test_utils_printing.py b/tests/test_utils_printing.py index f48792fdd..4837ffa4b 100644 --- a/tests/test_utils_printing.py +++ b/tests/test_utils_printing.py @@ -135,24 +135,15 @@ def test_printable_dict_of_dicts(): ], ["ID", "✓ Success?", "SuperPrecisionValue", "Result Metadata"], ( - "A: ID -" - "B: ✓ Success? -" - "C: SuperPrecisionValue -" - "D: Result Metadata -" - "# A B C D -" - "------------------------------------------------------------------ -" - "0 X1 True 0.1234 {'meta': 'ok'} -" - "1 AnotherSample False 98765.4321 {'meta': [1, 2, 3]} -" - "2 Z None 0.0 {'meta': {'nested_key': 42}} -" + "A: ID\n" + "B: ✓ Success?\n" + "C: SuperPrecisionValue\n" + "D: Result Metadata\n" + "# A B C D\n" + "------------------------------------------------------------------\n" + "0 X1 True 0.1234 {'meta': 'ok'}\n" + "1 AnotherSample False 98765.4321 {'meta': [1, 2, 3]}\n" + "2 Z None 0.0 {'meta': {'nested_key': 42}}\n" ) ) ])