summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bs4/tests/test_builder_registry.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/bs4/tests/test_builder_registry.py b/bs4/tests/test_builder_registry.py
index 860639d..4a60bc1 100644
--- a/bs4/tests/test_builder_registry.py
+++ b/bs4/tests/test_builder_registry.py
@@ -51,10 +51,6 @@ class BuiltInRegistryTest(unittest.TestCase):
self.assertEqual(registry.lookup('html.parser'),
HTMLParserTreeBuilder)
- def test_unimplemented_combinations(self):
- self.assertEqual(registry.lookup('fast', 'permissive', 'html'),
- None)
-
def test_beautifulsoup_constructor_does_lookup(self):
# You can pass in a string.
BeautifulSoup("", features="html")