From ecb953d3734d51d734ba195b68a5ddf60dc2a9ef Mon Sep 17 00:00:00 2001 From: tligui_y Date: Tue, 29 Jul 2025 19:49:26 +0200 Subject: [PATCH] Update tests/test_utils_printing.py --- tests/test_utils_printing.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_utils_printing.py b/tests/test_utils_printing.py index 5c3e9cb09..b65db9205 100644 --- a/tests/test_utils_printing.py +++ b/tests/test_utils_printing.py @@ -113,8 +113,8 @@ def test_printable_dict_of_dicts(): expected = ( "AnotherSection:\n" "---------------\n" - "x: True\n" "another_long_key: None\n" + "x: True\n" "\n" "SectionOne:\n" "-----------\n" @@ -140,7 +140,7 @@ def test_printable_dict_of_dicts(): "C: SuperPrecisionValue\n" "D: Result Metadata\n" "# A B C D\n" - "-------------------------------------------------------------\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"