8000
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 374019c commit fc56338Copy full SHA for fc56338
tests/test_lxp.py
@@ -56,10 +56,10 @@ def test_title_body_mismatched_close(self):
56
57
def test_title_body_named_charref(self):
58
self.assertXhtmlEquals(
59
- '<title>mdash</title>A &mdash B',
+ '<title>ntilde</title>A ñ B',
60
'<html xmlns="http://www.w3.org/1999/xhtml">'
61
- '<head><title>mdash</title></head>' +
62
- '<body>A '+ unichr(0x2014).encode('utf-8') + ' B</body>' +
+ '<head><title>ntilde</title></head>' +
+ '<body>A '+ unichr(0xf1).encode('utf-8') + ' B</body>' +
63
'</html>')
64
65
class BasicXmlTest(Xhtml5Test):
0 commit comments