diff --git a/tailcall-tracker/src/tracker.rs b/tailcall-tracker/src/tracker.rs index 9ae2d85a37..e078565308 100644 --- a/tailcall-tracker/src/tracker.rs +++ b/tailcall-tracker/src/tracker.rs @@ -152,7 +152,10 @@ mod tests { #[tokio::test] async fn test_tracker() { - if let Err(e) = TRACKER.dispatch(EventKind::Command("ping".to_string())).await { + if let Err(e) = TRACKER + .dispatch(EventKind::Command("ping".to_string())) + .await + { panic!("Tracker dispatch error: {:?}", e); } }