We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb81eb6 commit 9e7a36eCopy full SHA for 9e7a36e
opentelemetry-otlp/src/exporter/http/mod.rs
@@ -675,7 +675,10 @@ mod tests {
675
use std::collections::HashMap;
676
// Arrange
677
let initial_headers = HashMap::from([("k1".to_string(), "v1".to_string())]);
678
- let extra_headers = HashMap::from([("k2".to_string(), "v2".to_string())]);
+ let extra_headers = HashMap::from([
679
+ ("k2".to_string(), "v2".to_string()),
680
+ ("k3".to_string(), "v3".to_string()),
681
+ ]);
682
let expected_headers = initial_headers.iter().chain(extra_headers.iter()).fold(
683
HashMap::new(),
684
|mut acc, (k, v)| {
0 commit comments