Skip to content

Commit b89c13d

Browse files
committed
fmt
1 parent 709cf1d commit b89c13d

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

opentelemetry-jaeger-propagator/src/propagator.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -550,10 +550,7 @@ mod tests {
550550
#[test]
551551
fn test_extract_span_id() {
552552
let propgator = Propagator::new();
553-
assert_eq!(
554-
propgator.extract_span_id("12345"),
555-
Ok(SpanId::from(74565))
556-
);
553+
assert_eq!(propgator.extract_span_id("12345"), Ok(SpanId::from(74565)));
557554

558555
// Fail to extract span id with an invalid hex-string
559556
assert_eq!(propgator.extract_span_id("invalid"), Err(()));

0 commit comments

Comments
 (0)