diff --git a/crates/gpui/src/executor.rs b/crates/gpui/src/executor.rs index 722590671d1c5b416c63084b65e0f51b70b49341..86cd7451fb3559ffd7da4001bdf6f6bd121e8b39 100644 --- a/crates/gpui/src/executor.rs +++ b/crates/gpui/src/executor.rs @@ -282,7 +282,7 @@ impl BackgroundExecutor { let mut cx = std::task::Context::from_waker(&waker); let duration = Duration::from_secs( - option_env!("BLOCK_INTERNAL_TIMEOUT") + option_env!("GPUI_TEST_TIMEOUT") .and_then(|s| s.parse::().ok()) .unwrap_or(180), );