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))