diff options
author | Leonard Richardson <leonard.richardson@canonical.com> | 2011-02-20 19:30:01 -0500 |
---|---|---|
committer | Leonard Richardson <leonard.richardson@canonical.com> | 2011-02-20 19:30:01 -0500 |
commit | c3090d7e7337f88853fc5371c6d8011eb638c37f (patch) | |
tree | cfdc90333c894ade4e2dad99e16329253be5fea5 /tests/test_soup.py | |
parent | 39a2b266b634aa2eca4329a6719e090087113f46 (diff) |
Renamed constructor arguments to comply with PEP 8.
Diffstat (limited to 'tests/test_soup.py')
-rw-r--r-- | tests/test_soup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_soup.py b/tests/test_soup.py index 01dff53..bb2262a 100644 --- a/tests/test_soup.py +++ b/tests/test_soup.py @@ -12,7 +12,7 @@ class TestSelectiveParsing(SoupTest): def test_parse_with_soupstrainer(self): markup = "No<b>Yes</b><a>No<b>Yes <c>Yes</c></b>" strainer = SoupStrainer("b") - soup = self.soup(markup, parseOnlyThese=strainer) + soup = self.soup(markup, parse_only=strainer) self.assertEquals(soup.encode(), "<b>Yes</b><b>Yes <c>Yes</c></b>") |