From 79f9c5d1c6000d62a36157d0d266a4ce988a4fae Mon Sep 17 00:00:00 2001 From: Clemens Schwaighofer Date: Tue, 27 Jan 2026 14:51:25 +0900 Subject: [PATCH] iterator list helpers tests run cases updated --- test-run/iterator_handling/list_helpers.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/test-run/iterator_handling/list_helpers.py b/test-run/iterator_handling/list_helpers.py index cc1d255..f1c2784 100644 --- a/test-run/iterator_handling/list_helpers.py +++ b/test-run/iterator_handling/list_helpers.py @@ -48,6 +48,19 @@ def __make_unique_list_of_dicts(): unique_dicts = make_unique_list_of_dicts(dict_list) print(f"Unique dicts: {dump_data(unique_dicts)}") + dict_list = [ + [], + {}, + [], + {}, + {"a": []}, + {"a": []}, + {"a": {}}, + {"a": {}}, + ] + unique_dicts = make_unique_list_of_dicts(dict_list) + print(f"Unique dicts: {dump_data(unique_dicts)}") + def main(): """List helpers test runner"""