CI Tests: Fix python syntax in bz699724 testcase

This commit is contained in:
Sergey Kolosov 2022-06-29 15:47:28 +02:00 committed by Martin Cermak
parent d760d0071f
commit 856fa5a570

View File

@ -8,7 +8,7 @@ class CryptTestCase(unittest.TestCase):
def test_crypt(self):
c = crypt.crypt('mypassword', 'ab')
if test_support.verbose:
print 'Test encryption: ', c
print ('Test encryption: ', c)
def test_salt(self):
self.assertEqual(len(crypt._saltchars), 64)