We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc8eced commit c63efb9Copy full SHA for c63efb9
openssl/src/x509/tests.rs
@@ -705,8 +705,15 @@ fn test_crl_entry_extensions() {
705
.extension::<AuthorityInformationAccess>()
706
.unwrap()
707
.expect("Authority Information Access extension should be present");
708
- assert!(!critical, "Authority Information Access extension is not critical");
709
- assert_eq!(access_info.len(), 1, "Authority Information Access should have one entry");
+ assert!(
+ !critical,
710
+ "Authority Information Access extension is not critical"
711
+ );
712
+ assert_eq!(
713
+ access_info.len(),
714
+ 1,
715
+ "Authority Information Access should have one entry"
716
717
assert_eq!(access_info[0].method().to_string(), "CA Issuers");
718
assert_eq!(
719
access_info[0].location().uri(),
0 commit comments