tests: Use updated unittest method
This commit is contained in:
committed by
Paul Beckingham
parent
407d66d681
commit
02db131fa1
@@ -172,7 +172,7 @@ class TestBug1031(TestCase):
|
||||
code, out, err = self.t("1 info")
|
||||
|
||||
expected = "Description\s+to"
|
||||
self.assertRegexpMatches(out, expected)
|
||||
self.assertRegex(out, expected)
|
||||
|
||||
def test_alias_to_to(self):
|
||||
"""1031: alias working as expected: 'from -- to' -> 'to to'"""
|
||||
@@ -180,7 +180,7 @@ class TestBug1031(TestCase):
|
||||
code, out, err = self.t("1 info")
|
||||
|
||||
expected = "Description\s+to to"
|
||||
self.assertRegexpMatches(out, expected)
|
||||
self.assertRegex(out, expected)
|
||||
|
||||
def test_alias_to_from(self):
|
||||
"""1031: alias working as expected: 'to -- from' -> 'to from'"""
|
||||
@@ -188,7 +188,7 @@ class TestBug1031(TestCase):
|
||||
code, out, err = self.t("1 info")
|
||||
|
||||
expected = "Description\s+to from"
|
||||
self.assertRegexpMatches(out, expected)
|
||||
self.assertRegex(out, expected)
|
||||
|
||||
|
||||
class Test1445(TestCase):
|
||||
|
||||
Reference in New Issue
Block a user