Skip to content

Commit

Permalink
Fix dynatrace clippy lints
Browse files Browse the repository at this point in the history
  • Loading branch information
jtescher committed Feb 27, 2022
1 parent dad83bf commit 8f53c57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion opentelemetry-dynatrace/tests/http_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ mod test {
);
assert_eq!(
req.headers().get(AUTHORIZATION),
Some(&HeaderValue::from_str(&"Api-Token 1234567890".to_string()).unwrap()),
Some(&HeaderValue::from_str("Api-Token 1234567890").unwrap()),
);

let bytes = body::to_bytes(req.into_body())
Expand Down

0 comments on commit 8f53c57

Please sign in to comment.