style: apply cargo fmt workspace-wide
Pure formatting pass from `cargo fmt --all`. No logic changes. Separating this out so the 1.9 release feature commits that follow show only their intentional edits.
This commit is contained in:
@@ -75,7 +75,11 @@ mod tests {
|
||||
|
||||
#[test]
|
||||
fn new_event_defaults() {
|
||||
let event = Event::new("order.created", "order-456", serde_json::json!({"amount": 100}));
|
||||
let event = Event::new(
|
||||
"order.created",
|
||||
"order-456",
|
||||
serde_json::json!({"amount": 100}),
|
||||
);
|
||||
assert_eq!(event.event_name, "order.created");
|
||||
assert_eq!(event.event_key, "order-456");
|
||||
assert!(!event.is_processed);
|
||||
|
||||
Reference in New Issue
Block a user