summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSybren A. Stüvel <sybren@stuvel.eu>2017-04-10 11:56:55 +0200
committerSybren A. Stüvel <sybren@stuvel.eu>2017-04-10 11:56:55 +0200
commita478d4c23a75c76f1e5587b3c08b1f3a1f2cbf8e (patch)
treed3c925319eceae8331a39feb09643c84dec13a9e /tests
parent736444cf20bb14f0ec6e2906ae63c8382f8b70cc (diff)
downloadrsa-git-a478d4c23a75c76f1e5587b3c08b1f3a1f2cbf8e.tar.gz
Don't print in unit tests
Diffstat (limited to 'tests')
-rw-r--r--tests/test_pkcs1.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/test_pkcs1.py b/tests/test_pkcs1.py
index bd1fd81..2116284 100644
--- a/tests/test_pkcs1.py
+++ b/tests/test_pkcs1.py
@@ -74,10 +74,7 @@ class SignatureTest(unittest.TestCase):
"""Test happy flow of sign and verify"""
message = b'je moeder'
- print("\tMessage: %r" % message)
-
signature = pkcs1.sign(message, self.priv, 'SHA-256')
- print("\tSignature: %r" % signature)
self.assertTrue(pkcs1.verify(message, signature, self.pub))