Skip to content

Commit

Permalink
Merge pull request #5674 from helloocc/master
Browse files Browse the repository at this point in the history
Doc fix: remove redundant parentheses.
  • Loading branch information
The-Compiler committed Jul 30, 2019
2 parents fd2fb36 + 2959fb3 commit cb15e7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/en/example/markers.rst
Expand Up @@ -336,7 +336,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), (2, 3)]
("n", "expected"), [(1, 2), pytest.param(1, 3, marks=pytest.mark.bar), (2, 3)]
)
def test_increment(n, expected):
assert n + 1 == expected
Expand Down

0 comments on commit cb15e7c

Please sign in to comment.