summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bs4/tests/test_htmlparser.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/bs4/tests/test_htmlparser.py b/bs4/tests/test_htmlparser.py
index d5b6ae1..b6af528 100644
--- a/bs4/tests/test_htmlparser.py
+++ b/bs4/tests/test_htmlparser.py
@@ -128,8 +128,6 @@ class TestHTMLParserTreeBuilder(SoupTest):
# parse tree and that the rest of the document parsed.
self.assertEqual(soup.p.contents[0], 'foo')
-# -------------------------
-
def test_mixed_case_tags(self):
# Mixed-case tags are folded to lowercase.
self.assertSoupEquals(
@@ -168,15 +166,6 @@ class TestHTMLParserTreeBuilder(SoupTest):
self.assertEqual(blockquote.p.b.string, 'Foo')
self.assertEqual(blockquote.b.string, 'Foo')
- # This is a <table> tag containing another <table> tag in one of its
- # cells.
- TABLE_MARKUP_1 = ('<table id="1">'
- '<tr>'
- "<td>Here's another table:"
- '<table id="2">'
- '<tr><td>foo</td></tr>'
- '</table></td>')
-
def test_correctly_nested_tables(self):
markup = ('<table id="1">'
'<tr>'