From: Michael Foord Date: Sat, 5 Jun 2010 13:38:16 +0000 (+0000) Subject: unittest.TestCase assertion methods inform you when they have omitted an over long... X-Git-Tag: v2.7rc1~15 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5fe21ff91a0f3404680a7ff8c3c78b085b7ce92a;p=python unittest.TestCase assertion methods inform you when they have omitted an over long diff on failure. Issue 8351. --- diff --git a/Lib/unittest/case.py b/Lib/unittest/case.py index ff6b8b3cb9..08e8c1e964 100644 --- a/Lib/unittest/case.py +++ b/Lib/unittest/case.py @@ -14,6 +14,10 @@ from .util import ( __unittest = True + +DIFF_OMITTED = ('\nDiff is %s characters long. ' + 'Set self.maxDiff to None to see it.') + class SkipTest(Exception): """ Raise this exception in a test to skip it. @@ -700,7 +704,7 @@ class TestCase(object): max_diff = self.maxDiff if max_diff is None or len(diff) <= max_diff: return message + diff - return message + return message + (DIFF_OMITTED % len(diff)) def assertListEqual(self, list1, list2, msg=None): """A list-specific equality assertion.