From 508597ba065e37abf8ece51f561c5e61c0aa0a82 Mon Sep 17 00:00:00 2001 From: Tushar Mathur Date: Sun, 22 Sep 2024 17:30:51 +0530 Subject: [PATCH] style: lint fixes --- tailcall-tracker/src/tracker.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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); } }