git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@1851 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
calvin 2004-10-06 19:04:25 +00:00
parent 8a539c782a
commit c9162a0d54

View file

@ -196,7 +196,7 @@ class TestParser (unittest.TestCase):
"""test entity resolving"""
for c in "abcdefghijklmnopqrstuvwxyz":
self.assertEqual(
linkcheck.HtmlParser.resolve_entities("&#%d;"%ord(c)), c)
linkcheck.HtmlParser.resolve_entities("&#%d;" % ord(c)), c)
def test_suite ():