mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Clippy
This commit is contained in:
parent
37e3928d40
commit
fd9ac5c48e
2 changed files with 8 additions and 9 deletions
|
@ -126,6 +126,7 @@ mod tests {
|
|||
use super::*;
|
||||
use ntex_util::future::lazy;
|
||||
|
||||
#[allow(clippy::clone_on_copy)]
|
||||
#[ntex::test]
|
||||
async fn resolver() {
|
||||
let resolver = Resolver::default().clone();
|
||||
|
|
|
@ -139,15 +139,13 @@ mod tests {
|
|||
});
|
||||
|
||||
let mut cert_store = RootCertStore::empty();
|
||||
cert_store.add_server_trust_anchors(webpki_roots::TLS_SERVER_ROOTS.0.iter().map(
|
||||
|ta| {
|
||||
OwnedTrustAnchor::from_subject_spki_name_constraints(
|
||||
ta.subject,
|
||||
ta.spki,
|
||||
ta.name_constraints,
|
||||
)
|
||||
},
|
||||
));
|
||||
cert_store.add_trust_anchors(webpki_roots::TLS_SERVER_ROOTS.iter().map(|ta| {
|
||||
OwnedTrustAnchor::from_subject_spki_name_constraints(
|
||||
ta.subject,
|
||||
ta.spki,
|
||||
ta.name_constraints,
|
||||
)
|
||||
}));
|
||||
let config = ClientConfig::builder()
|
||||
.with_safe_defaults()
|
||||
.with_root_certificates(cert_store)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue