Skip to content

Commit

Permalink
Fix typo (#3062)
Browse files Browse the repository at this point in the history
  • Loading branch information
MITSUBOSHI committed Jul 5, 2023
1 parent 0e8ed50 commit ce3af77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion actix-http/src/http_message.rs
Expand Up @@ -146,7 +146,7 @@ mod tests {
.finish();
assert_eq!(req.content_type(), "text/plain");
let req = TestRequest::default()
.insert_header(("content-type", "application/json; charset=utf=8"))
.insert_header(("content-type", "application/json; charset=utf-8"))
.finish();
assert_eq!(req.content_type(), "application/json");
let req = TestRequest::default().finish();
Expand Down

0 comments on commit ce3af77

Please sign in to comment.