Skip to content

Commit

Permalink
\n at EOL, fix pytestmark boilerplate
Browse files Browse the repository at this point in the history
  • Loading branch information
theunkn0wn1 committed Dec 23, 2019
1 parent 95aae28 commit 7ce00dd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions tests/test_ircv3.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from pydle.features import ircv3

pytestmark = pytest.mark.new_test
pytestmark = pytest.mark.unit


@pytest.mark.parametrize(
Expand All @@ -13,8 +13,8 @@
{"+example": """raw+:=,escaped; \\"""}
),
(
rb"@+example=\foo\bar :irc.example.com NOTICE #channel :Message",
{"+example": "foobar"}
rb"@+example=\foo\bar :irc.example.com NOTICE #channel :Message",
{"+example": "foobar"}
),
]
)
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ markers =
slow: may take several seconds or more to complete.
meta: tests the test suite itself.
real: tests pydle against a real server. Requires PYDLE_TESTS_REAL_HOST and PYDLE_TESTS_REAL_PORT environment variables.
new_test: new tests
unit: unit tests

0 comments on commit 7ce00dd

Please sign in to comment.