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 709cf1d commit b89c13dCopy full SHA for b89c13d
opentelemetry-jaeger-propagator/src/propagator.rs
@@ -550,10 +550,7 @@ mod tests {
550
#[test]
551
fn test_extract_span_id() {
552
let propgator = Propagator::new();
553
- assert_eq!(
554
- propgator.extract_span_id("12345"),
555
- Ok(SpanId::from(74565))
556
- );
+ assert_eq!(propgator.extract_span_id("12345"), Ok(SpanId::from(74565)));
557
558
// Fail to extract span id with an invalid hex-string
559
assert_eq!(propgator.extract_span_id("invalid"), Err(()));
0 commit comments