mirror of
https://github.com/python/cpython.git
synced 2025-08-30 21:48:47 +00:00
Use lowercase true/false in assertTrue/assertFalse messages.
This commit is contained in:
parent
b68a7bc70c
commit
3044fa77a5
2 changed files with 8 additions and 8 deletions
|
@ -166,13 +166,13 @@ class TestLongMessage(unittest.TestCase):
|
|||
|
||||
def testAssertTrue(self):
|
||||
self.assertMessages('assertTrue', (False,),
|
||||
["^False is not True$", "^oops$", "^False is not True$",
|
||||
"^False is not True : oops$"])
|
||||
["^False is not true$", "^oops$", "^False is not true$",
|
||||
"^False is not true : oops$"])
|
||||
|
||||
def testAssertFalse(self):
|
||||
self.assertMessages('assertFalse', (True,),
|
||||
["^True is not False$", "^oops$", "^True is not False$",
|
||||
"^True is not False : oops$"])
|
||||
["^True is not false$", "^oops$", "^True is not false$",
|
||||
"^True is not false : oops$"])
|
||||
|
||||
def testNotEqual(self):
|
||||
self.assertMessages('assertNotEqual', (1, 1),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue