From ff2f5ee00871338e9eb0e55b375454685fa90735 Mon Sep 17 00:00:00 2001 From: tligui_y Date: Thu, 17 Jul 2025 10:10:21 +0200 Subject: [PATCH] Update tests/test_param.py --- tests/test_param.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_param.py b/tests/test_param.py index c9f91a29..0fda59a6 100644 --- a/tests/test_param.py +++ b/tests/test_param.py @@ -10,8 +10,8 @@ def test_basic_ids(x): # id au milieu avec autre kwarg (reason) @pytest.mark.parametrize("x", [ - pytest.param(10, reason="because", id="ten"), - pytest.param(20, id="twenty", marks=pytest.mark.skip(reason="nope")), + pytest.param(10, id="ten"), + pytest.param(20, marks=pytest.mark.skip(reason="nope"), id="twenty"), ]) def test_with_reason_and_marks(x): pass