Update tests/test_utils_printing.py
Run CI Tests / test (push) Successful in 32s

This commit is contained in:
2025-07-29 19:30:26 +02:00
parent 5177a9cf69
commit 2bbc837681
+9 -18
View File
@@ -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"
)
)
])