Skip to content

Commit 509a079

Browse files
committed
cargo fmt
1 parent 3c9ab3b commit 509a079

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

bottlecap/src/lifecycle/invocation/triggers/msk_event.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -607,7 +607,10 @@ mod tests {
607607
});
608608

609609
let event = MSKEvent::new(payload).expect("Should deserialize despite no trace context");
610-
let record = event.records.values().find_map(|arr| arr.first())
610+
let record = event
611+
.records
612+
.values()
613+
.find_map(|arr| arr.first())
611614
.expect("Expected at least one record");
612615
assert_eq!(record.topic, "demo-topic");
613616
assert_eq!(record.partition, 0);

0 commit comments

Comments
 (0)