diff options
author | Leonard Richardson <leonard.richardson@canonical.com> | 2010-12-26 16:22:16 -0500 |
---|---|---|
committer | Leonard Richardson <leonard.richardson@canonical.com> | 2010-12-26 16:22:16 -0500 |
commit | d575daed6b0ac6fffc691c44e256a3e8de8e8cdc (patch) | |
tree | 4f671d59d6a47e16a6d5d9609fd8143ffbb7067c | |
parent | 9bf34da305075da4f934d381028a9e4b8c2e7717 (diff) |
Got the html5lib parser to work, even though it works by building a separate DOM tree and turning it into SAX events so we can build another DOM tree.
-rw-r--r-- | src/beautifulsoup/tests/test_lxml.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/beautifulsoup/tests/test_lxml.py b/src/beautifulsoup/tests/test_lxml.py index a69b9aa..bbbbe18 100644 --- a/src/beautifulsoup/tests/test_lxml.py +++ b/src/beautifulsoup/tests/test_lxml.py @@ -53,4 +53,4 @@ class TestLXMLBuilder(SoupTest): def test_suite(): - unittest.TestLoader().loadTestsFromName('__name__') + return unittest.TestLoader().loadTestsFromName('__name__') |