diff options
author | Leonard Richardson <leonardr@segfault.org> | 2019-07-07 15:59:09 -0400 |
---|---|---|
committer | Leonard Richardson <leonardr@segfault.org> | 2019-07-07 15:59:09 -0400 |
commit | 0159c0a4135f267aed0586ba9d829d0a3da25da8 (patch) | |
tree | 78f20c40c74910109651bb7fb0a1b6dc1a29a621 /bs4/tests/test_htmlparser.py | |
parent | 0c3c1970dcb93bbe591707e43cfba9b24de45d05 (diff) |
It's now possible to override a TreeBuilder's cdata_list_attributes dictionary by passing in a replacement. None will disable the feature altogether. [bug=1832978]
Diffstat (limited to 'bs4/tests/test_htmlparser.py')
-rw-r--r-- | bs4/tests/test_htmlparser.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/bs4/tests/test_htmlparser.py b/bs4/tests/test_htmlparser.py index 0381c7d..790489a 100644 --- a/bs4/tests/test_htmlparser.py +++ b/bs4/tests/test_htmlparser.py @@ -9,9 +9,7 @@ from bs4.builder._htmlparser import BeautifulSoupHTMLParser class HTMLParserTreeBuilderSmokeTest(SoupTest, HTMLTreeBuilderSmokeTest): - @property - def default_builder(self): - return HTMLParserTreeBuilder() + default_builder = HTMLParserTreeBuilder def test_namespaced_system_doctype(self): # html.parser can't handle namespaced doctypes, so skip this one. |