From 480e3c9dafe16b1955e947fa9ffac15342effb7b Mon Sep 17 00:00:00 2001 From: "Joseph T. Lyons" Date: Fri, 29 Mar 2024 21:12:47 -0400 Subject: [PATCH] Fix test name (#9979) This must've come about from copying and pasting another test and forgetting to update the name. Release Notes: - N/A --- crates/client/src/telemetry.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/crates/client/src/telemetry.rs b/crates/client/src/telemetry.rs index 6b21940fb8..0ee25eb602 100644 --- a/crates/client/src/telemetry.rs +++ b/crates/client/src/telemetry.rs @@ -590,7 +590,10 @@ mod tests { } #[gpui::test] - async fn test_connection_timeout(executor: BackgroundExecutor, cx: &mut TestAppContext) { + async fn test_telemetry_flush_on_flush_interval( + executor: BackgroundExecutor, + cx: &mut TestAppContext, + ) { init_test(cx); let clock = Arc::new(FakeSystemClock::new( Utc.with_ymd_and_hms(1990, 4, 12, 12, 0, 0).unwrap(),