From 61dcc618a2c4a6aea781e8a6ec03f2d96c4876a7 Mon Sep 17 00:00:00 2001 From: tligui_y Date: Sun, 3 Aug 2025 13:36:54 +0200 Subject: [PATCH] Update tests/test_utils_argfwd.py --- tests/test_utils_argfwd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_utils_argfwd.py b/tests/test_utils_argfwd.py index 1824b3f7d..b27e554f7 100644 --- a/tests/test_utils_argfwd.py +++ b/tests/test_utils_argfwd.py @@ -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)'), ])