Fixed #26922 -- Fixed SimpleTestCase.assertHTMLEqual() crash on Python 3.5+.
This commit is contained in:
parent
915786785f
commit
d7a097265b
|
@ -64,7 +64,7 @@ def assert_and_parse_html(self, html, user_msg, msg):
|
|||
try:
|
||||
dom = parse_html(html)
|
||||
except HTMLParseError as e:
|
||||
standardMsg = '%s\n%s' % (msg, e.msg)
|
||||
standardMsg = '%s\n%s' % (msg, e)
|
||||
self.fail(self._formatMessage(user_msg, standardMsg))
|
||||
return dom
|
||||
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
import sys
|
||||
import unittest
|
||||
import warnings
|
||||
|
||||
|
@ -629,6 +630,15 @@ class HTMLEqualTests(SimpleTestCase):
|
|||
self.assertHTMLEqual('<p>', '')
|
||||
with self.assertRaises(AssertionError):
|
||||
self.assertHTMLEqual('', '<p>')
|
||||
error_msg = (
|
||||
"First argument is not valid HTML:\n"
|
||||
"('Unexpected end tag `div` (Line 1, Column 6)', (1, 6))"
|
||||
) if sys.version_info >= (3, 5) else (
|
||||
"First argument is not valid HTML:\n"
|
||||
"Unexpected end tag `div` (Line 1, Column 6), at line 1, column 7"
|
||||
)
|
||||
with self.assertRaisesMessage(AssertionError, error_msg):
|
||||
self.assertHTMLEqual('< div></ div>', '<div></div>')
|
||||
with self.assertRaises(HTMLParseError):
|
||||
parse_html('</p>')
|
||||
|
||||
|
|
Loading…
Reference in New Issue