Skip to content

Commit

Permalink
Fix clippy issues
Browse files Browse the repository at this point in the history
  • Loading branch information
neonmoe committed Jul 16, 2024
1 parent 2f68983 commit af40fa7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/request.rs
Original file line number Diff line number Diff line change
Expand Up @@ -535,8 +535,8 @@ mod parsing_tests {
#[test]
fn test_headers() {
let headers = HashMap::from([
(format!("foo"), format!("bar")),
(format!("foo"), format!("baz")),
("foo".to_string(), "bar".to_string()),
("foo".to_string(), "baz".to_string()),
]);

let req = get("http://www.example.org/test/res").with_headers(headers.clone());
Expand Down

0 comments on commit af40fa7

Please sign in to comment.