Skip to content

Commit c63efb9

Browse files
author
Geoff Thomas
committed
cargo fmt
1 parent cc8eced commit c63efb9

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

openssl/src/x509/tests.rs

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -705,8 +705,15 @@ fn test_crl_entry_extensions() {
705705
.extension::<AuthorityInformationAccess>()
706706
.unwrap()
707707
.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");
708+
assert!(
709+
!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+
);
710717
assert_eq!(access_info[0].method().to_string(), "CA Issuers");
711718
assert_eq!(
712719
access_info[0].location().uri(),

0 commit comments

Comments
 (0)