refactor: fix `clippy::needless_borrows_for_generic_args` (#190)

pull/192/head
Ethan Brierley 2024-10-17 09:53:04 +01:00 committed by GitHub
parent 28a13232c0
commit 6d14d78d7a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 4 deletions

View File

@ -199,7 +199,7 @@ async fn assert_retry_on_request_timeout() {
.build();
let resp = client
.get(&format!("{}/foo", server.uri()))
.get(format!("{}/foo", server.uri()))
.timeout(std::time::Duration::from_millis(10))
.send()
.await
@ -254,7 +254,7 @@ async fn assert_retry_on_incomplete_message() {
.build();
let resp = client
.get(&format!("{}/foo", uri))
.get(format!("{}/foo", uri))
.timeout(std::time::Duration::from_millis(100))
.send()
.await
@ -305,7 +305,7 @@ async fn assert_retry_on_hyper_canceled() {
.build();
let resp = client
.get(&format!("{}/foo", uri))
.get(format!("{}/foo", uri))
.timeout(std::time::Duration::from_millis(100))
.send()
.await
@ -353,7 +353,7 @@ async fn assert_retry_on_connection_reset_by_peer() {
.build();
let resp = client
.get(&format!("{}/foo", uri))
.get(format!("{}/foo", uri))
.timeout(std::time::Duration::from_millis(100))
.send()
.await