From 856fa5a570c323751d0a37538bf5aa53231887ca Mon Sep 17 00:00:00 2001 From: Sergey Kolosov Date: Wed, 29 Jun 2022 15:47:28 +0200 Subject: [PATCH] CI Tests: Fix python syntax in bz699724 testcase --- .../test_crypt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Regression/bz699724-Memory-leak-within-NSSLOW-Init-as-called-by/test_crypt.py b/tests/Regression/bz699724-Memory-leak-within-NSSLOW-Init-as-called-by/test_crypt.py index 05eac95..27b02bc 100644 --- a/tests/Regression/bz699724-Memory-leak-within-NSSLOW-Init-as-called-by/test_crypt.py +++ b/tests/Regression/bz699724-Memory-leak-within-NSSLOW-Init-as-called-by/test_crypt.py @@ -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)