summaryrefslogtreecommitdiff
path: root/tests/test_soup.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_soup.py')
-rw-r--r--tests/test_soup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_soup.py b/tests/test_soup.py
index 4fb2142..7414403 100644
--- a/tests/test_soup.py
+++ b/tests/test_soup.py
@@ -27,7 +27,7 @@ class TestUnicodeDammit(unittest.TestCase):
def test_smart_quotes_to_html_entities(self):
markup = "<foo>\x91\x92\x93\x94</foo>"
- dammit = UnicodeDammit(markup, smartQuotesTo="html")
+ dammit = UnicodeDammit(markup, smart_quotes_to="html")
self.assertEquals(
dammit.unicode, "<foo>&lsquo;&rsquo;&ldquo;&rdquo;</foo>")