style: run cargo fmt

This commit is contained in:
2026-05-22 22:03:27 +09:00
parent 458fdbc9e0
commit 93c91e7c06
15 changed files with 94 additions and 62 deletions
+3 -1
View File
@@ -185,7 +185,9 @@ mod tests {
let item = build_system_item(&entry, &catalog).unwrap();
match item {
SystemItem::PodEvent { event, body } => {
assert!(matches!(event, PodEvent::TurnEnded { ref pod_name } if pod_name == "child"));
assert!(
matches!(event, PodEvent::TurnEnded { ref pod_name } if pod_name == "child")
);
assert!(body.contains("[Notification]"));
assert!(body.contains("`child`"));
}