Update tests/test_utils_utils.py
Run CI Tests / test (push) Successful in 2m45s

This commit is contained in:
2025-07-31 10:45:01 +02:00
parent f1c2aa366d
commit 090d23abfb
@@ -55,16 +55,16 @@ def sample_function(x):
({"key": [{"nested": 1}, (2, 3)]}, "dict"),
# Fonctions
(lambda x: x, "<lambda>"),
(sample_function, "sample_function"),
(sample_function(10), "nested"),
(len, "len"),
(sum, "sum"),
(lambda x: x, "function"),
(sample_function, "function"),
(sample_function(10), "function"),
(len, "builtin_function_or_method"),
(sum, "builtin_function_or_method"),
# Modules
(math, "math"),
(sys, "sys"),
(types.FunctionType, "FunctionType"),
(math, "module"),
(sys, "module"),
(types.FunctionType, "type"),
((i for i in range(3)), "generator"),
(iter([1, 2, 3]), "list_iterator"),
])