]> granicus.if.org Git - python/commitdiff
Use lowercase true/false in assertTrue/assertFalse messages.
authorEzio Melotti <ezio.melotti@gmail.com>
Sat, 18 Dec 2010 17:31:58 +0000 (17:31 +0000)
committerEzio Melotti <ezio.melotti@gmail.com>
Sat, 18 Dec 2010 17:31:58 +0000 (17:31 +0000)
Lib/unittest/case.py
Lib/unittest/test/test_assertions.py

index 6752e7a895b96fc54c06dcf915f1b5822be1f094..d6e80e89c835463555e83f3c27218da7ea3d2ce6 100644 (file)
@@ -477,15 +477,15 @@ class TestCase(object):
         raise self.failureException(msg)
 
     def assertFalse(self, expr, msg=None):
-        "Fail the test if the expression is true."
+        """Check that the expression is false."""
         if expr:
-            msg = self._formatMessage(msg, "%s is not False" % safe_repr(expr))
+            msg = self._formatMessage(msg, "%s is not false" % safe_repr(expr))
             raise self.failureException(msg)
 
     def assertTrue(self, expr, msg=None):
-        """Fail the test unless the expression is true."""
+        """Check that the expression is true."""
         if not expr:
-            msg = self._formatMessage(msg, "%s is not True" % safe_repr(expr))
+            msg = self._formatMessage(msg, "%s is not true" % safe_repr(expr))
             raise self.failureException(msg)
 
     def _formatMessage(self, msg, standardMsg):
index df2e89ead26383713b9bed868fcb0e1e99ecbd7a..c81db2434b45c3e04f13c7f434df50132d5a21f4 100644 (file)
@@ -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),