aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/primitives/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/hazmat/primitives/utils.py')
-rw-r--r--tests/hazmat/primitives/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hazmat/primitives/utils.py b/tests/hazmat/primitives/utils.py
index c02d1926..9ae8d217 100644
--- a/tests/hazmat/primitives/utils.py
+++ b/tests/hazmat/primitives/utils.py
@@ -125,7 +125,7 @@ def long_string_hash_test(backend, algorithm, md, only_if, skip_message):
pytest.skip(skip_message)
m = hashes.Hash(algorithm, backend=backend)
m.update(b"a" * 1000000)
- assert m.finalize() == binascii.unhexlify(md.lower())
+ assert m.finalize() == binascii.unhexlify(md.lower().encode('ascii'))
def generate_hmac_test(param_loader, path, file_names, digestmod,