summaryrefslogtreecommitdiff
path: root/tests/test_soup.py
diff options
context:
space:
mode:
authorLeonard Richardson <leonard.richardson@canonical.com>2011-02-18 12:21:18 -0500
committerLeonard Richardson <leonard.richardson@canonical.com>2011-02-18 12:21:18 -0500
commit845dbe03bee981bcc5d24ef06ca868042968aa4c (patch)
tree83672d245b08a7a9456f3c29fa62885b13361bfa /tests/test_soup.py
parent945b719a28c229178e710b749d2af4d00a81bdba (diff)
Made Unicode, Dammit more PEP-8 compliant.
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>")