From: Brett Cannon Date: Tue, 18 Mar 2008 05:43:04 +0000 (+0000) Subject: Improve the error message for a test that failed on the S-390 Debian buildbot. X-Git-Tag: v2.6a2~279 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=08811dde5d797716009acd32c1604a41540d6dc9;p=python Improve the error message for a test that failed on the S-390 Debian buildbot. --- diff --git a/Lib/test/test_errno.py b/Lib/test/test_errno.py index 3f4496563e..e42c86d59b 100755 --- a/Lib/test/test_errno.py +++ b/Lib/test/test_errno.py @@ -42,7 +42,8 @@ class ErrnoAttributeTests(unittest.TestCase): errors_set = set(errors) for attribute in errno.__dict__.iterkeys(): if attribute.isupper(): - self.assert_(attribute in errors_set) + self.assert_(attribute in errors_set, + "%s is an unexpected error value" % attribute) def test_using_errorcode(self): # Every key value in errno.errorcode should be on the module.