diff --git a/tests/test_ircv3.py b/tests/test_ircv3.py index ca883f2..f99410f 100644 --- a/tests/test_ircv3.py +++ b/tests/test_ircv3.py @@ -2,7 +2,7 @@ from pydle.features import ircv3 -pytestmark = pytest.mark.new_test +pytestmark = pytest.mark.unit @pytest.mark.parametrize( @@ -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"} ), ] ) diff --git a/tox.ini b/tox.ini index 11dec10..5bd18aa 100644 --- a/tox.ini +++ b/tox.ini @@ -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 \ No newline at end of file + unit: unit tests