summaryrefslogtreecommitdiff
path: root/bs4/testing.py
diff options
context:
space:
mode:
Diffstat (limited to 'bs4/testing.py')
-rw-r--r--bs4/testing.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bs4/testing.py b/bs4/testing.py
index c77b3b6..d7b01aa 100644
--- a/bs4/testing.py
+++ b/bs4/testing.py
@@ -412,11 +412,11 @@ class HTML5TreeBuilderSmokeTest(HTMLTreeBuilderSmokeTest):
def test_mathml_tags_have_namespace(self):
- markup = '<math><sqrt>5</sqrt></math>'
+ markup = '<math><msqrt>5</msqrt></math>'
soup = self.soup(markup)
namespace = 'http://www.w3.org/1998/Math/MathML'
self.assertEqual(namespace, soup.math.namespace)
- self.assertEqual(namespace, soup.sqrt.namespace)
+ self.assertEqual(namespace, soup.msqrt.namespace)
def skipIf(condition, reason):