summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2016-07-26 19:59:04 +0300
committerVille Skyttä <ville.skytta@iki.fi>2016-07-26 19:59:04 +0300
commit044eed927b404f60d828eb6b6ee28a242af6427d (patch)
tree897de3ca2303feb004bab4ef419681a32dba165b
parent99821550d79bb4524f31f153a53a10a069bafccb (diff)
downloadbeautifulsoup4-044eed927b404f60d828eb6b6ee28a242af6427d.tar.gz
Use assertEqual instead of deprecated assertEquals
-rw-r--r--bs4/tests/test_soup.py2
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: