diff options
Diffstat (limited to 'Lib/test/test_errno.py')
-rwxr-xr-x | Lib/test/test_errno.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_errno.py b/Lib/test/test_errno.py index e7d5ce5..f414a87 100755 --- a/Lib/test/test_errno.py +++ b/Lib/test/test_errno.py @@ -20,7 +20,8 @@ class ErrnoAttributeTests(unittest.TestCase): def test_using_errorcode(self): # Every key value in errno.errorcode should be on the module. for value in errno.errorcode.values(): - self.assertTrue(hasattr(errno, value), 'no %s attr in errno' % value) + self.assertTrue(hasattr(errno, value), + 'no %s attr in errno' % value) class ErrorcodeTests(unittest.TestCase): |