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 58c618b commit 10f21c1Copy full SHA for 10f21c1
tests/integration.rs
@@ -332,10 +332,10 @@ fn wildcard_subject_alternative_names() {
332
}
333
334
#[cfg(feature = "alloc")]
335
-fn expect_cert_dns_names(data: &[u8], expected_names: &[&str]) {
+fn expect_cert_dns_names(cert_der: &[u8], expected_names: &[&str]) {
336
use std::collections::HashSet;
337
338
- let der = CertificateDer::from(data);
+ let der = CertificateDer::from(cert_der);
339
let cert = webpki::EndEntityCert::try_from(&der)
340
.expect("should parse end entity certificate correctly");
341
0 commit comments