commit | 48006cf1a8b8d1cadb422619c3b51bb17b4e9405 | [log] [tgz] |
---|---|---|
author | Ezio Melotti <ezio.melotti@gmail.com> | Sun May 01 00:03:49 2011 +0300 |
committer | Ezio Melotti <ezio.melotti@gmail.com> | Sun May 01 00:03:49 2011 +0300 |
tree | 764be191d09ae5e98028e52865d10f9d252bf808 | |
parent | a463d259304616e3e4051cdace0d7c5d5cc6075f [diff] |
Fix test.
diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py index 61b2676..04bdfef 100644 --- a/Lib/test/test_sys.py +++ b/Lib/test/test_sys.py
@@ -478,7 +478,7 @@ 'Threading required for this test.') def test_thread_info(self): info = sys.thread_info - self.assertTrue(len(info), 3) + self.assertEqual(len(info), 3) self.assertIn(info.name, ('nt', 'os2', 'pthread', 'solaris', None)) self.assertIn(info.lock, ('semaphore', 'mutex+cond', None))