From 5bee75fabf792764ef25eec7c5c20aadcf94e6e0 Mon Sep 17 00:00:00 2001 From: Steven Normore Date: Thu, 30 May 2024 12:02:03 -0400 Subject: [PATCH] fix(handshake/sdk): clippy error --- lib/sdk/src/http_util.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/sdk/src/http_util.rs b/lib/sdk/src/http_util.rs index fc883ed71..a4b95ea7c 100644 --- a/lib/sdk/src/http_util.rs +++ b/lib/sdk/src/http_util.rs @@ -126,7 +126,7 @@ mod tests { }; let response = "Hello".as_bytes(); - respond(&mut connection, &response).await.unwrap(); + respond(&mut connection, response).await.unwrap(); connection.shutdown().await.unwrap(); let mut received_data = Vec::new(); @@ -157,7 +157,7 @@ mod tests { }; let response = "Hello".as_bytes(); - respond(&mut connection, &response).await.unwrap(); + respond(&mut connection, response).await.unwrap(); connection.shutdown().await.unwrap(); let mut received_data = Vec::new();