diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-03-02 09:10:40 -0430 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-03-02 09:10:40 -0430 |
commit | 43b4f1c43298ee8804396c89f1684a1012b87ead (patch) | |
tree | 83a7cacc9c717c36cdded66154e115deeec9a659 /tests | |
parent | 48610a5190286ce59204fecf096d217abaf4ed23 (diff) | |
parent | 9b1a82e42bdd546220225430aa06e3b732fb0155 (diff) | |
download | cryptography-43b4f1c43298ee8804396c89f1684a1012b87ead.tar.gz cryptography-43b4f1c43298ee8804396c89f1684a1012b87ead.tar.bz2 cryptography-43b4f1c43298ee8804396c89f1684a1012b87ead.zip |
Merge pull request #703 from alex/change-exceptino-type
Change exception in use
Diffstat (limited to 'tests')
-rw-r--r-- | tests/hazmat/primitives/twofactor/test_hotp.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/hazmat/primitives/twofactor/test_hotp.py b/tests/hazmat/primitives/twofactor/test_hotp.py index 7c584271..4c726b77 100644 --- a/tests/hazmat/primitives/twofactor/test_hotp.py +++ b/tests/hazmat/primitives/twofactor/test_hotp.py @@ -15,7 +15,7 @@ import os import pytest -from cryptography.exceptions import InvalidToken, UnsupportedAlgorithm +from cryptography.exceptions import InvalidToken from cryptography.hazmat.primitives.twofactor.hotp import HOTP from cryptography.hazmat.primitives import hashes from tests.utils import load_vectors_from_file, load_nist_vectors @@ -46,7 +46,7 @@ class TestHOTP(object): def test_invalid_algorithm(self, backend): secret = os.urandom(16) - with pytest.raises(UnsupportedAlgorithm): + with pytest.raises(TypeError): HOTP(secret, 6, MD5(), backend) @pytest.mark.parametrize("params", vectors) |