diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2018-03-20 13:12:13 -0400 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2018-03-20 13:12:13 -0400 |
commit | 79748a9e84b8084559e9a2794ed2d88e05259611 (patch) | |
tree | 977efc17aa7cd369fee5b13f480f3907980a08f5 /tests/x509/test_x509_ext.py | |
parent | 9b4423b254d0c4b1e5eba25d1188ebaaf8a863b5 (diff) | |
download | cryptography-79748a9e84b8084559e9a2794ed2d88e05259611.tar.gz cryptography-79748a9e84b8084559e9a2794ed2d88e05259611.tar.bz2 cryptography-79748a9e84b8084559e9a2794ed2d88e05259611.zip |
Revert "don't allow GeneralNames to be an empty list (#4128)" (#4161)
This breaks the urllib3 tests, as well as several in-the-wild certs
This reverts commit 388d1bd3e9cd953fcc948edbc152d5d140c87eb8.
Diffstat (limited to 'tests/x509/test_x509_ext.py')
-rw-r--r-- | tests/x509/test_x509_ext.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/x509/test_x509_ext.py b/tests/x509/test_x509_ext.py index b048c140..9f4e1758 100644 --- a/tests/x509/test_x509_ext.py +++ b/tests/x509/test_x509_ext.py @@ -2052,10 +2052,6 @@ class TestGeneralNames(object): [x509.DNSName(u"cryptography.io"), "invalid"] ) - def test_does_not_allow_empty_list(self): - with pytest.raises(ValueError): - x509.GeneralNames([]) - def test_repr(self): gns = x509.GeneralNames( [ |