Fix linting

This commit is contained in:
Bruno Oliveira 2018-12-17 10:35:17 -02:00
parent f04d3c8b7d
commit 843d00c219
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
Markers example documentation page updated to support latest pytest version. Markers example documentation page updated to support latest pytest version.

View File

@ -308,7 +308,7 @@ apply a marker to an individual test instance::
@pytest.mark.foo @pytest.mark.foo
@pytest.mark.parametrize(("n", "expected"), [ @pytest.mark.parametrize(("n", "expected"), [
(1, 2), (1, 2),
pytest.param((1, 3), marks=pytest.mark.bar), pytest.param((1, 3), marks=pytest.mark.bar),
(2, 3), (2, 3),
]) ])
def test_increment(n, expected): def test_increment(n, expected):