Skip to content

Commit cb15e7c

Browse files
authored
Merge pull request #5674 from helloocc/master
Doc fix: remove redundant parentheses.
2 parents fd2fb36 + 2959fb3 commit cb15e7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/en/example/markers.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ apply a marker to an individual test instance:
336336
337337
@pytest.mark.foo
338338
@pytest.mark.parametrize(
339-
("n", "expected"), [(1, 2), pytest.param((1, 3), marks=pytest.mark.bar), (2, 3)]
339+
("n", "expected"), [(1, 2), pytest.param(1, 3, marks=pytest.mark.bar), (2, 3)]
340340
)
341341
def test_increment(n, expected):
342342
assert n + 1 == expected

0 commit comments

Comments
 (0)