Clippy warnings (#382)

This commit is contained in:
Nikolay Kim 2024-07-16 22:13:33 +02:00 committed by GitHub
parent 2cbc42730b
commit d39611d246
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
19 changed files with 33 additions and 43 deletions

View file

@ -231,10 +231,7 @@ mod tests {
ntex_service::fn_service(|_| async { Ok::<_, ()>(()) })
});
let srv = Connector::default()
.tag("T")
.memory_pool(PoolId::P5)
.clone();
let srv = Connector::default().tag("T").memory_pool(PoolId::P5);
let result = srv.connect("").await;
assert!(result.is_err());
let result = srv.connect("localhost:99999").await;