diff --git a/src/_pytest/mark/__init__.py b/src/_pytest/mark/__init__.py index e234a7d40ee..db19dfb9ebe 100644 --- a/src/_pytest/mark/__init__.py +++ b/src/_pytest/mark/__init__.py @@ -76,9 +76,8 @@ def test_eval(test_input, expected): :ref:`pytest.mark.usefixtures ` cannot be added via this parameter. :type id: str | Literal[pytest.HIDDEN_PARAM] | None - :param id: The id to attribute to this parameter set. - - .. versionadded: 8.4 + :param id: + The id to attribute to this parameter set. :ref:`hidden-param` means to hide the parameter set from the test name. Can only be used at most 1 time, as diff --git a/src/_pytest/python.py b/src/_pytest/python.py index 63197960791..7cba342a931 100644 --- a/src/_pytest/python.py +++ b/src/_pytest/python.py @@ -1210,8 +1210,6 @@ def parametrize( They are mapped to the corresponding index in ``argvalues``. ``None`` means to use the auto-generated id. - .. versionadded: 8.4 - :ref:`hidden-param` means to hide the parameter set from the test name. Can only be used at most 1 time, as test names need to be unique.