diff options
author | Leonard Richardson <leonard.richardson@canonical.com> | 2012-01-20 13:56:02 -0500 |
---|---|---|
committer | Leonard Richardson <leonard.richardson@canonical.com> | 2012-01-20 13:56:02 -0500 |
commit | 45fd6b551dccc85f01061f26642614ceebf39843 (patch) | |
tree | 1451f49eff5a8a5b4c13037f8616bee199985fe7 /bs4/tests/test_tree.py | |
parent | f7e2daa88f5d9001e171d65b122a3bdc7052f955 (diff) |
Got the test suite to pass on Python 3.2 (skipping the html5lib stuff, which doesn't seem to have Python 3 support yet.)
Diffstat (limited to 'bs4/tests/test_tree.py')
-rw-r--r-- | bs4/tests/test_tree.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bs4/tests/test_tree.py b/bs4/tests/test_tree.py index 68677ca..865ac68 100644 --- a/bs4/tests/test_tree.py +++ b/bs4/tests/test_tree.py @@ -546,7 +546,7 @@ class TestTreeModification(SoupTest): self.assertEqual(soup.decode(), self.document_for('<a id2="foo"></a>')) def test_new_tag_creation(self): - builder = builder_registry.lookup('html5lib')() + builder = builder_registry.lookup('html')() soup = self.soup("<body></body>", builder=builder) a = Tag(soup, builder, 'a') ol = Tag(soup, builder, 'ol') |