commit | fb39b3ffc6fcd3df0f89cd3978796a4377335075 | [log] [tgz] |
---|---|---|
author | Alex Gaynor <alex.gaynor@gmail.com> | Wed Oct 16 14:30:59 2013 -0700 |
committer | Alex Gaynor <alex.gaynor@gmail.com> | Wed Oct 16 14:30:59 2013 -0700 |
tree | fa51b1c07b09beee84f8e8d5d6e87c940f1d1d22 | |
parent | 512dd6925202c5dc6680dd7157a132a9ffc4855f [diff] [blame] |
Rewrite to avoid capitalization issues
diff --git a/tests/primitives/utils.py b/tests/primitives/utils.py index e4cb8da..3cf08c2 100644 --- a/tests/primitives/utils.py +++ b/tests/primitives/utils.py
@@ -39,4 +39,4 @@ ) actual_ciphertext = cipher.encrypt(binascii.unhexlify(plaintext)) actual_ciphertext += cipher.finalize() - assert binascii.hexlify(actual_ciphertext) == ciphertext + assert actual_ciphertext == binascii.unhexlify(ciphertext)