Skip to content

Commit

Permalink
Fix linter issue
Browse files Browse the repository at this point in the history
  • Loading branch information
pyohannes committed Feb 26, 2024
1 parent 7f99b4b commit 49e8d2f
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions opentelemetry-otlp/src/exporter/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -316,10 +316,7 @@ mod tests {
for (input_str, expected_headers) in test_cases {
assert_eq!(
super::parse_header_key_value_string(input_str),
match expected_headers {
Some((k, v)) => Some((k, v.to_string())),
None => None,
}
expected_headers.map(|(k, v)| (k, v.to_string())),
)
}
}
Expand Down

0 comments on commit 49e8d2f

Please sign in to comment.