Skip to content

Commit

Permalink
Merge pull request #47 from frenzymadness/patch-1
Browse files Browse the repository at this point in the history
Drop dependency on py
  • Loading branch information
RonnyPfannschmidt committed Dec 6, 2022
2 parents 1022b07 + 2023731 commit 74434d3
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions testing/test_iniconfig.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import py
import pytest
from iniconfig import IniConfig, ParseError, __all__ as ALL
from iniconfig import iscommentline
Expand Down Expand Up @@ -63,7 +62,7 @@ def parse(input):


def parse_a_error(input):
return py.test.raises(ParseError, parse, input)
return pytest.raises(ParseError, parse, input)


def test_tokenize(input, expected):
Expand Down Expand Up @@ -98,7 +97,7 @@ def test_section_cant_be_empty():
assert excinfo.value.lineno == 0


@py.test.mark.parametrize(
@pytest.mark.parametrize(
"line",
[
"!!",
Expand Down

0 comments on commit 74434d3

Please sign in to comment.