1
0
mirror of https://github.com/django/django.git synced 2025-06-05 11:39:13 +00:00

Refs #27804 -- Used subTest() in HTMLEqualTests.test_self_closing_tags.

This commit is contained in:
Jon Dufresne 2019-05-09 08:17:42 -07:00 committed by Carlton Gibson
parent e2feea5fc4
commit de6d3afb97

View File

@ -542,6 +542,7 @@ class HTMLEqualTests(SimpleTestCase):
'base', 'col',
)
for tag in self_closing_tags:
with self.subTest(tag):
dom = parse_html('<p>Hello <%s> world</p>' % tag)
self.assertEqual(len(dom.children), 3)
self.assertEqual(dom[0], 'Hello')