diff options
| author | Alex Gaynor <alex.gaynor@gmail.com> | 2022-07-16 17:31:50 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-16 21:31:50 +0000 |
| commit | 07bb910f6f084668e6fdb2e16e1e11a250bd2f08 (patch) | |
| tree | 6e01b72dca25ae8e8ce41183d2590e7da9051234 /tests | |
| parent | 12966837d78742d2253882a82e51195e41fece0f (diff) | |
| download | cryptography-07bb910f6f084668e6fdb2e16e1e11a250bd2f08.tar.gz | |
fix typo in test name (#7426)
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/wycheproof/test_chacha20poly1305.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/wycheproof/test_chacha20poly1305.py b/tests/wycheproof/test_chacha20poly1305.py index d36ea66a7..7cb8ff50f 100644 --- a/tests/wycheproof/test_chacha20poly1305.py +++ b/tests/wycheproof/test_chacha20poly1305.py @@ -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"]) |
