From 81547cb67d204e27d4c121d24f4ece5bb338e9ad Mon Sep 17 00:00:00 2001 From: Alistair Coles Date: Thu, 26 Sep 2024 13:29:13 +0100 Subject: [PATCH] trivial: remove print from functional tests A print statement, presumably for debugging, crept in with the Related-Change. Change-Id: I0cccb960b51446a3aa58be95c8c9d06cc6b6eada Related-Change: I69974cc8a39731c980b54137b799a36b2e63a44a --- test/functional/test_tempurl.py | 1 - 1 file changed, 1 deletion(-) diff --git a/test/functional/test_tempurl.py b/test/functional/test_tempurl.py index 5ef3ae6b1d..feb36b23a8 100644 --- a/test/functional/test_tempurl.py +++ b/test/functional/test_tempurl.py @@ -494,7 +494,6 @@ class TestContainerTempurl(Base): method = method.encode('utf8') path = path.encode('utf8') key = key.encode('utf8') - print(key, method, expires, path) return hmac.new( key, b'%s\n%d\n%s' % (method, expires, path),