diff options
author | Leonard Richardson <leonardr@segfault.org> | 2016-07-26 21:25:00 -0400 |
---|---|---|
committer | Leonard Richardson <leonardr@segfault.org> | 2016-07-26 21:25:00 -0400 |
commit | d728b532db6e6def64b447bd42cf9a8ff698f03a (patch) | |
tree | 17fd686c07e1dda95344e185478704bbd3703044 | |
parent | f248e7d7935e65eb1f2280c14c9b9d310e5dc9e5 (diff) | |
parent | 54f214be4092ff95a370aafe469b925c1cdeffb2 (diff) |
Renamed deprecated method. Contributed by Ville Skyttä.
-rw-r--r-- | bs4/tests/test_soup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bs4/tests/test_soup.py b/bs4/tests/test_soup.py index e1c2f3d..780d288 100644 --- a/bs4/tests/test_soup.py +++ b/bs4/tests/test_soup.py @@ -77,7 +77,7 @@ class TestWarnings(SoupTest): def test_no_warning_if_explicit_parser_specified(self): with warnings.catch_warnings(record=True) as w: soup = self.soup("<a><b></b></a>", "html.parser") - self.assertEquals([], w) + self.assertEqual([], w) def test_parseOnlyThese_renamed_to_parse_only(self): with warnings.catch_warnings(record=True) as w: |