diff --git a/crates/gpui2/src/executor.rs b/crates/gpui2/src/executor.rs index 6bfd9ce15a..104f40e8f1 100644 --- a/crates/gpui2/src/executor.rs +++ b/crates/gpui2/src/executor.rs @@ -220,7 +220,7 @@ impl Executor { #[cfg(any(test, feature = "test-support"))] pub fn simulate_random_delay(&self) -> impl Future { - self.dispatcher.as_test().unwrap().simulate_random_delay() + self.spawn(self.dispatcher.as_test().unwrap().simulate_random_delay()) } #[cfg(any(test, feature = "test-support"))]