diff options
author | David Reid <dreid@dreid.org> | 2014-02-03 11:14:06 -0800 |
---|---|---|
committer | David Reid <dreid@dreid.org> | 2014-02-03 11:14:06 -0800 |
commit | d69e950e3f2fb8b87c23ade50d61d9d89f3954ba (patch) | |
tree | 1785cfee026768307b696c07d3472736436fb981 /tests/hazmat/primitives | |
parent | aaf23026695eb404d435ca4f5a0c2222b804438e (diff) | |
download | cryptography-d69e950e3f2fb8b87c23ade50d61d9d89f3954ba.tar.gz cryptography-d69e950e3f2fb8b87c23ade50d61d9d89f3954ba.tar.bz2 cryptography-d69e950e3f2fb8b87c23ade50d61d9d89f3954ba.zip |
Don't forget InvalidKey.
Diffstat (limited to 'tests/hazmat/primitives')
-rw-r--r-- | tests/hazmat/primitives/test_hkdf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hazmat/primitives/test_hkdf.py b/tests/hazmat/primitives/test_hkdf.py index 0b7fa9b5..0497c66b 100644 --- a/tests/hazmat/primitives/test_hkdf.py +++ b/tests/hazmat/primitives/test_hkdf.py @@ -17,7 +17,7 @@ import six import pytest -from cryptography.exceptions import AlreadyFinalized, +from cryptography.exceptions import AlreadyFinalized, InvalidKey from cryptography.hazmat.primitives import hashes from cryptography.hazmat.primitives.kdf.hkdf import HKDF |