aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/primitives/test_block.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2016-03-07 09:10:08 -0500
committerAlex Gaynor <alex.gaynor@gmail.com>2016-03-07 09:10:08 -0500
commit83c9cdaf1d8cb0d1a60f89935e237fa5fffcc571 (patch)
tree10df6ccc2fe0566630df5f8ca2d40031b20b72c3 /tests/hazmat/primitives/test_block.py
parentde1bc1f5fd25cee71a25bf3e50c57137cb81c08d (diff)
parent4fc597d9990bdf17f714ae1a3a3f759e4039e4a9 (diff)
downloadcryptography-83c9cdaf1d8cb0d1a60f89935e237fa5fffcc571.tar.gz
cryptography-83c9cdaf1d8cb0d1a60f89935e237fa5fffcc571.tar.bz2
cryptography-83c9cdaf1d8cb0d1a60f89935e237fa5fffcc571.zip
Merge pull request #2771 from reaperhulk/use-bytes
pass bytes to modes/algorithms like we should
Diffstat (limited to 'tests/hazmat/primitives/test_block.py')
-rw-r--r--tests/hazmat/primitives/test_block.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hazmat/primitives/test_block.py b/tests/hazmat/primitives/test_block.py
index 4f7e63bf..5d77877d 100644
--- a/tests/hazmat/primitives/test_block.py
+++ b/tests/hazmat/primitives/test_block.py
@@ -120,7 +120,7 @@ class TestCipherContext(object):
@pytest.mark.supported(
only_if=lambda backend: backend.cipher_supported(
- algorithms.AES("\x00" * 16), modes.GCM("\x00" * 12)
+ algorithms.AES(b"\x00" * 16), modes.GCM(b"\x00" * 12)
),
skip_message="Does not support AES GCM",
)