Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
est31 committed Sep 7, 2023
1 parent c21738a commit 772795e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 10 deletions.
13 changes: 8 additions & 5 deletions tests/generic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -214,10 +214,13 @@ mod test_parse_crl_dps {
.collect::<Vec<_>>();

// We should find the expected URIs.
assert_eq!(uris, &[
"http://example.com/crl.der",
"http://crls.example.com/1234",
"ldap://example.com/crl.der"
]);
assert_eq!(
uris,
&[
"http://example.com/crl.der",
"http://crls.example.com/1234",
"ldap://example.com/crl.der"
]
);
}
}
13 changes: 8 additions & 5 deletions tests/openssl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -492,9 +492,12 @@ fn test_openssl_crl_dps_parse() {
.collect::<Vec<_>>();

// We should find the expected URIs.
assert_eq!(uris, &[
"http://example.com/crl.der",
"http://crls.example.com/1234",
"ldap://example.com/crl.der"
]);
assert_eq!(
uris,
&[
"http://example.com/crl.der",
"http://crls.example.com/1234",
"ldap://example.com/crl.der"
]
);
}

0 comments on commit 772795e

Please sign in to comment.