fix typo in test name (#7426)

This commit is contained in:
Alex Gaynor 2022-07-16 17:31:50 -04:00 committed by GitHub
parent 12966837d7
commit 07bb910f6f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,7 +19,7 @@ from ..hazmat.primitives.test_aead import _aead_supported
reason="Requires OpenSSL with ChaCha20Poly1305 support",
)
@wycheproof_tests("chacha20_poly1305_test.json")
def test_chacha2poly1305(backend, wycheproof):
def test_chacha20poly1305(backend, wycheproof):
key = binascii.unhexlify(wycheproof.testcase["key"])
iv = binascii.unhexlify(wycheproof.testcase["iv"])
aad = binascii.unhexlify(wycheproof.testcase["aad"])