Replace assertEquals with assertEqual

- #259

Signed-off-by: Thomas Lauf <thomas.lauf@tngtech.com>
This commit is contained in:
Thomas Lauf 2019-12-09 22:12:49 +01:00
parent 7fa7ca5f04
commit 9dd8257cc0
7 changed files with 15 additions and 15 deletions

View file

@ -175,7 +175,7 @@ class TestAnnotate(TestCase):
j = self.t.export()
self.assertEquals(len(j), 1)
self.assertEqual(len(j), 1)
self.assertClosedInterval(j[0], expectedAnnotation="foo")
def test_annotate_with_embedded_quotes(self):
@ -188,7 +188,7 @@ class TestAnnotate(TestCase):
j = self.t.export()
self.assertEquals(len(j), 1)
self.assertEqual(len(j), 1)
self.assertClosedInterval(j[0], expectedAnnotation='bar "foo" bar')
if __name__ == "__main__":