Skip to content

Commit

Permalink
Fix typo in tests
Browse files Browse the repository at this point in the history
Thank you pytest warnings for catching this error!
  • Loading branch information
mgedmin committed May 21, 2019
1 parent 8e46a97 commit 432c548
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/parsers/test_appveyor.py
Expand Up @@ -16,7 +16,7 @@
)


needs_pyyaml = pytest.mark.skipIf(yaml is None, "PyYAML not installed")
needs_pyyaml = pytest.mark.skipif(yaml is None, reason="PyYAML not installed")


@needs_pyyaml
Expand Down
2 changes: 1 addition & 1 deletion tests/parsers/test_travis.py
Expand Up @@ -19,7 +19,7 @@
)


needs_pyyaml = pytest.mark.skipIf(yaml is None, "PyYAML not installed")
needs_pyyaml = pytest.mark.skipif(yaml is None, reason="PyYAML not installed")


@needs_pyyaml
Expand Down

0 comments on commit 432c548

Please sign in to comment.