Replaced a deprecated assertEquals

This commit is contained in:
Claude Paroz 2012-09-24 16:07:58 +02:00
parent 6eda8d784a
commit e72e22e518
1 changed files with 1 additions and 1 deletions

View File

@ -154,4 +154,4 @@ class TestUtilsHtml(unittest.TestCase):
("<a>x</a> <p><b>y</b></p>", "a b", "x <p>y</p>"),
)
for value, tags, output in items:
self.assertEquals(f(value, tags), output)
self.assertEqual(f(value, tags), output)