Skip to content
Merged
Prev Previous commit
Next Next commit
Remove old tests.
  • Loading branch information
serhiy-storchaka committed Mar 17, 2026
commit 44441585f9e9979003aaccecbfd4b2ddc41270e0
7 changes: 0 additions & 7 deletions Lib/test/test_binascii.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,6 @@ def test_constants(self):
b'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
b'.-:+=^!/*?&<>()[]{}@%$#')

for name in ('BASE85_ALPHABET', 'ASCII85_ALPHABET',
'Z85_ALPHABET'):
value = getattr(binascii, name)
self.assertIsInstance(value, bytes)
self.assertEqual(len(value), 85)
self.assertEqual(len(set(value)), 85)

def test_functions(self):
# Check presence of all functions
for name in all_functions:
Expand Down