Skip to content

Commit 7d6ea07

Browse files
committed
fmt
1 parent ed039ae commit 7d6ea07

File tree

1 file changed

+14
-12
lines changed

1 file changed

+14
-12
lines changed

opentelemetry-proto/tests/json_serde.rs

+14-12
Original file line numberDiff line numberDiff line change
@@ -275,18 +275,20 @@ mod json_serde {
275275
start_time_unix_nano: 1544712660000000000,
276276
end_time_unix_nano: 1544712661000000000,
277277
attributes: vec![
278-
KeyValue {
279-
key: String::from("my.span.attr"),
280-
value: Some(AnyValue {
281-
value: Some(Value::StringValue(String::from("some value"))),
282-
}),
283-
},
284-
KeyValue {
285-
key: String::from("my.span.bytes.attr"),
286-
value: Some(AnyValue {
287-
value: Some(Value::BytesValue(vec![0x80, 0x80, 0x80])),
288-
}),
289-
},
278+
KeyValue {
279+
key: String::from("my.span.attr"),
280+
value: Some(AnyValue {
281+
value: Some(Value::StringValue(String::from(
282+
"some value",
283+
))),
284+
}),
285+
},
286+
KeyValue {
287+
key: String::from("my.span.bytes.attr"),
288+
value: Some(AnyValue {
289+
value: Some(Value::BytesValue(vec![0x80, 0x80, 0x80])),
290+
}),
291+
},
290292
],
291293
dropped_attributes_count: 1,
292294
events: vec![Event {

0 commit comments

Comments
 (0)