From e72e22e518a730cd28cd68c9374fa79a45e27a9c Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Mon, 24 Sep 2012 16:07:58 +0200 Subject: [PATCH] Replaced a deprecated assertEquals --- tests/regressiontests/utils/html.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/regressiontests/utils/html.py b/tests/regressiontests/utils/html.py index 98df80a5e23..6a93dff85e0 100644 --- a/tests/regressiontests/utils/html.py +++ b/tests/regressiontests/utils/html.py @@ -154,4 +154,4 @@ class TestUtilsHtml(unittest.TestCase): ("x

y

", "a b", "x

y

"), ) for value, tags, output in items: - self.assertEquals(f(value, tags), output) + self.assertEqual(f(value, tags), output)