From 1cc507c9ac0154904a65f7352736cb665686e4a4 Mon Sep 17 00:00:00 2001 From: Leonard Richardson Date: Tue, 7 Feb 2012 13:48:06 -0500 Subject: On output, always convert special XML characters to entities. --- bs4/tests/test_html5lib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bs4/tests/test_html5lib.py') diff --git a/bs4/tests/test_html5lib.py b/bs4/tests/test_html5lib.py index b136ba0..5b1d1e4 100644 --- a/bs4/tests/test_html5lib.py +++ b/bs4/tests/test_html5lib.py @@ -149,7 +149,7 @@ class TestHTML5BuilderInvalidMarkup(TestLXMLBuilderInvalidMarkup): def test_incomplete_declaration(self): # An incomplete declaration is treated as a comment. markup = 'ac' - self.assertSoupEquals(markup, "ac") + self.assertSoupEquals(markup, "ac") # Let's spell that out a little more explicitly. soup = self.soup(markup) -- cgit v1.2.3