From 05e057fffd26dc95b4c8586b755e89f64d9976cd Mon Sep 17 00:00:00 2001 From: Thorsten Ball Date: Fri, 15 Nov 2024 07:41:11 +0100 Subject: [PATCH] Make method only available in tests --- crates/gpui/src/executor.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/gpui/src/executor.rs b/crates/gpui/src/executor.rs index 27173a2930..4eccf94bf8 100644 --- a/crates/gpui/src/executor.rs +++ b/crates/gpui/src/executor.rs @@ -301,6 +301,7 @@ impl BackgroundExecutor { /// Block the current thread until the given future resolves /// or `duration` has elapsed. + #[cfg(any(test, feature = "test-support"))] pub(crate) fn block_to_shutdown( &self, duration: Duration,