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