diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-06-22 20:45:41 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-06-22 20:45:41 -0400 |
commit | 02fe5a8d2d2d87830484f731e821054a21a9bf4f (patch) | |
tree | 6b2066d1411ffeb40e942e763beaa3dda1860b11 /tests/hazmat | |
parent | 02a299d8b2d70e4e145fbd420787ea35873d96f7 (diff) | |
download | cryptography-02fe5a8d2d2d87830484f731e821054a21a9bf4f.tar.gz cryptography-02fe5a8d2d2d87830484f731e821054a21a9bf4f.tar.bz2 cryptography-02fe5a8d2d2d87830484f731e821054a21a9bf4f.zip |
Remove our workarounds for pyasn.1 bugs, a new pyasn.1 is out!
Diffstat (limited to 'tests/hazmat')
-rw-r--r-- | tests/hazmat/primitives/test_asym_utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/hazmat/primitives/test_asym_utils.py b/tests/hazmat/primitives/test_asym_utils.py index c3fbedf9..35b77ca4 100644 --- a/tests/hazmat/primitives/test_asym_utils.py +++ b/tests/hazmat/primitives/test_asym_utils.py @@ -65,6 +65,6 @@ def test_decode_rfc6979_invalid_asn1(): decode_rfc6979_signature(b"0\x07\x02\x01\x01\x02\x02\x01") with pytest.raises(ValueError): - # This is the BER "end-of-contents octets," which pyasn1 is - # wrongly willing to return from top-level DER decoding. + # This is the BER "end-of-contents octets," which older versions of + # pyasn1 are wrongly willing to return from top-level DER decoding. decode_rfc6979_signature(b"\x00\x00") |