diff options
author | Michael Foord <fuzzyman@voidspace.org.uk> | 2010-06-05 23:58:40 (GMT) |
---|---|---|
committer | Michael Foord <fuzzyman@voidspace.org.uk> | 2010-06-05 23:58:40 (GMT) |
commit | c532c57d44007d22944edce6b12af3d638d5fd3c (patch) | |
tree | 64595706ef2bf3223041489f9fa27c8258e54600 /Lib/unittest | |
parent | 62c3c794264ee30dfb49cd292cd2e21869b68452 (diff) | |
download | cpython-c532c57d44007d22944edce6b12af3d638d5fd3c.zip cpython-c532c57d44007d22944edce6b12af3d638d5fd3c.tar.gz cpython-c532c57d44007d22944edce6b12af3d638d5fd3c.tar.bz2 |
Code formatting change.
Diffstat (limited to 'Lib/unittest')
-rw-r--r-- | Lib/unittest/case.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/unittest/case.py b/Lib/unittest/case.py index 48e2460..8341b88 100644 --- a/Lib/unittest/case.py +++ b/Lib/unittest/case.py @@ -163,6 +163,7 @@ class TestCase(object): # This attribute sets the maximum length of a diff in failure messsages # by assert methods using difflib. It is looked up as an instance attribute # so can be configured by individual tests if required. + maxDiff = 80*8 # Attribute used by TestSuite for classSetUp |