diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/hazmat/oath/test_hotp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/hazmat/oath/test_hotp.py b/tests/hazmat/oath/test_hotp.py index 7df0d4db..d2d3c941 100644 --- a/tests/hazmat/oath/test_hotp.py +++ b/tests/hazmat/oath/test_hotp.py @@ -43,7 +43,7 @@ class TestHOTP(object): assert hotp.generate(counter) == hotp_value @pytest.mark.parametrize("params", vectors) - def test_validate(self, backend, params): + def test_verify(self, backend, params): secret = params["secret"] counter = int(params["counter"]) hotp_value = params["hotp"] |