diff --git a/changelog/4557.doc.rst b/changelog/4557.doc.rst index 72562788a..dba2e39cd 100644 --- a/changelog/4557.doc.rst +++ b/changelog/4557.doc.rst @@ -1 +1 @@ -Markers example documentation page updated to support latest pytest version. \ No newline at end of file +Markers example documentation page updated to support latest pytest version. diff --git a/doc/en/example/markers.rst b/doc/en/example/markers.rst index 019157bd9..9d325c30e 100644 --- a/doc/en/example/markers.rst +++ b/doc/en/example/markers.rst @@ -308,7 +308,7 @@ apply a marker to an individual test instance:: @pytest.mark.foo @pytest.mark.parametrize(("n", "expected"), [ (1, 2), - pytest.param((1, 3), marks=pytest.mark.bar), + pytest.param((1, 3), marks=pytest.mark.bar), (2, 3), ]) def test_increment(n, expected):