Make the type consistent for hashlib algorithm constants. (Reviewed by Benjamin).

This commit is contained in:
Raymond Hettinger 2011-01-24 04:52:27 +00:00
parent acff595a4e
commit bf1d2bc7cb
3 changed files with 6 additions and 3 deletions

View file

@ -103,7 +103,7 @@ class HashLibTestCase(unittest.TestCase):
def test_algorithms_guaranteed(self):
self.assertEqual(hashlib.algorithms_guaranteed,
tuple(_algo for _algo in self.supported_hash_names
set(_algo for _algo in self.supported_hash_names
if _algo.islower()))
def test_algorithms_available(self):