Update tests/test_utils_argfwd.py
Run CI Tests / test (push) Has been cancelled

This commit is contained in:
2025-08-03 13:36:54 +02:00
parent db13732ac9
commit 61dcc618a2
+1 -1
View File
@@ -103,7 +103,7 @@ def wrap_ignore_all(x, y):
return func_target(1, 2, 3, 4)
@pytest.mark.parametrize("func, expected_sig", [
(wrap_all, '(a, b, d=30, c=10)'),
(wrap_all, '(a, b, d=30, c=10)'),
(wrap_skip, '(a, b, c=10, d=20)'),
(wrap_ignore_all, '(x, y, c=10, d=20)'),
])