We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c090fc1 commit 6e158acCopy full SHA for 6e158ac
tests/test_html.py
@@ -160,12 +160,12 @@ def test_returns_unicode(self):
160
assert isinstance(remove_tags(b"no tags"), str)
161
assert isinstance(remove_tags(b"no tags", which_ones=("p",)), str)
162
assert isinstance(remove_tags(b"<p>one tag</p>"), str)
163
- assert isinstance(remove_tags(b"<p>one tag</p>", which_ones=("p")), str)
+ assert isinstance(remove_tags(b"<p>one tag</p>", which_ones=("p",)), str)
164
assert isinstance(remove_tags(b"<a>link</a>", which_ones=("b",)), str)
165
assert isinstance(remove_tags("no tags"), str)
166
assert isinstance(remove_tags("no tags", which_ones=("p",)), str)
167
assert isinstance(remove_tags("<p>one tag</p>"), str)
168
- assert isinstance(remove_tags("<p>one tag</p>", which_ones=("p")), str)
+ assert isinstance(remove_tags("<p>one tag</p>", which_ones=("p",)), str)
169
assert isinstance(remove_tags("<a>link</a>", which_ones=("b",)), str)
170
171
def test_remove_tags_without_tags(self):
tox.ini
@@ -42,7 +42,7 @@ commands =
42
[testenv:pylint]
43
deps =
44
{[testenv]deps}
45
- pylint==2.14.2
+ pylint==2.17.4
46
commands =
47
pylint conftest.py docs setup.py tests w3lib
48
0 commit comments