aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/primitives/test_hkdf.py
diff options
context:
space:
mode:
authorDavid Reid <dreid@dreid.org>2014-02-03 11:14:06 -0800
committerDavid Reid <dreid@dreid.org>2014-02-03 11:14:06 -0800
commitd69e950e3f2fb8b87c23ade50d61d9d89f3954ba (patch)
tree1785cfee026768307b696c07d3472736436fb981 /tests/hazmat/primitives/test_hkdf.py
parentaaf23026695eb404d435ca4f5a0c2222b804438e (diff)
downloadcryptography-d69e950e3f2fb8b87c23ade50d61d9d89f3954ba.tar.gz
cryptography-d69e950e3f2fb8b87c23ade50d61d9d89f3954ba.tar.bz2
cryptography-d69e950e3f2fb8b87c23ade50d61d9d89f3954ba.zip
Don't forget InvalidKey.
Diffstat (limited to 'tests/hazmat/primitives/test_hkdf.py')
-rw-r--r--tests/hazmat/primitives/test_hkdf.py2
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