commit | d88d721343828accacefca701a3d542365cd6d59 | [log] [tgz] |
---|---|---|
author | Alex Gaynor <alex.gaynor@gmail.com> | Tue Jun 19 20:36:16 2018 -0700 |
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | Tue Jun 19 22:36:16 2018 -0500 |
tree | c2bee753e60f584a9743041d929c5854cc762104 | |
parent | 1b17cb2aa468321c295c181c9fbb6ba6154be340 [diff] |
Correctly pass bytes; refs #4289 (#4290)
diff --git a/tests/hazmat/primitives/test_3des.py b/tests/hazmat/primitives/test_3des.py index 586afb4..f281ba2 100644 --- a/tests/hazmat/primitives/test_3des.py +++ b/tests/hazmat/primitives/test_3des.py
@@ -170,7 +170,7 @@ @pytest.mark.supported( only_if=lambda backend: backend.cipher_supported( - algorithms.TripleDES("\x00" * 8), modes.ECB() + algorithms.TripleDES(b"\x00" * 8), modes.ECB() ), skip_message="Does not support TripleDES ECB", )