diff options
| author | Claude Paroz <claude@2xlibre.net> | 2012-09-24 16:07:58 +0200 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2012-09-24 16:07:58 +0200 |
| commit | e72e22e518a730cd28cd68c9374fa79a45e27a9c (patch) | |
| tree | ea1a8e88a0ada3e63e9e3ab7b3d2229bc86c8e8b /tests | |
| parent | 6eda8d784a128309a67540fb0a62373667958daa (diff) | |
Replaced a deprecated assertEquals
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/regressiontests/utils/html.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/regressiontests/utils/html.py b/tests/regressiontests/utils/html.py index 98df80a5e2..6a93dff85e 100644 --- a/tests/regressiontests/utils/html.py +++ b/tests/regressiontests/utils/html.py @@ -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) |
