diff options
-rw-r--r-- | tests/test_x509.py | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/tests/test_x509.py b/tests/test_x509.py index 5fe6eb40..4e763e36 100644 --- a/tests/test_x509.py +++ b/tests/test_x509.py @@ -1192,9 +1192,14 @@ class TestCertificateBuilder(object): ]), x509.CRLDistributionPoints([ x509.DistributionPoint( - full_name=[x509.UniformResourceIdentifier( - u"http://myhost.com/myca.crl" - )], + full_name=[ + x509.UniformResourceIdentifier( + u"http://myhost.com/myca.crl" + ), + x509.UniformResourceIdentifier( + u"http://backup.myhost.com/myca.crl" + ) + ], relative_name=None, reasons=frozenset([ x509.ReasonFlags.key_compromise, |