diff options
author | Leonard Richardson <leonard.richardson@canonical.com> | 2011-02-20 15:08:51 -0500 |
---|---|---|
committer | Leonard Richardson <leonard.richardson@canonical.com> | 2011-02-20 15:08:51 -0500 |
commit | 89961f4de3ab1e88b15dd9c0aaa0af77a7c32262 (patch) | |
tree | 76d78c8831f0acb5a3a41bc628ffbd62b0bbfc6d /beautifulsoup/testing.py | |
parent | 6de230d1f201c686d56e5f5a5241db69c316cea8 (diff) |
Discovered that html5lib can't be made to support SoupStrainers, and changed the test suite appropriately.
Diffstat (limited to 'beautifulsoup/testing.py')
-rw-r--r-- | beautifulsoup/testing.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/beautifulsoup/testing.py b/beautifulsoup/testing.py index 9b1e858..8fd9abf 100644 --- a/beautifulsoup/testing.py +++ b/beautifulsoup/testing.py @@ -3,7 +3,7 @@ import unittest from beautifulsoup import BeautifulSoup from beautifulsoup.element import Comment, SoupStrainer -from beautifulsoup.builder.lxml_builder import LXMLTreeBuilder +from beautifulsoup.builder import LXMLTreeBuilder class SoupTest(unittest.TestCase): |