Skip to content

Commit

Permalink
fix(handshake/sdk): clippy error
Browse files Browse the repository at this point in the history
  • Loading branch information
snormore committed May 30, 2024
1 parent d58cda7 commit 5bee75f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/sdk/src/http_util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down Expand Up @@ -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();
Expand Down

0 comments on commit 5bee75f

Please sign in to comment.