From dada318be7dffe6b21db5431d4f26bf52c46bb09 Mon Sep 17 00:00:00 2001 From: Kirill Bulatov Date: Sun, 5 Oct 2025 22:47:34 +0300 Subject: [PATCH] Remove iterations from the slow FS tests (#39564) Follow-up to https://github.com/zed-industries/zed/pull/39557 Release Notes: - N/A --- crates/project/src/project_tests.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/project/src/project_tests.rs b/crates/project/src/project_tests.rs index 7cc6d1e9b49e6205460d72f3ef03003c48b9a9a8..c65a829a972edeb271f2897f859efbbc17c530f4 100644 --- a/crates/project/src/project_tests.rs +++ b/crates/project/src/project_tests.rs @@ -8840,7 +8840,7 @@ async fn test_file_status(cx: &mut gpui::TestAppContext) { }); } -#[gpui::test(iterations = 10)] +#[gpui::test] #[cfg_attr(target_os = "windows", ignore)] async fn test_ignored_dirs_events(cx: &mut gpui::TestAppContext) { init_test(cx); @@ -9130,7 +9130,7 @@ async fn test_odd_events_for_ignored_dirs( ); } -#[gpui::test(iterations = 10)] +#[gpui::test] async fn test_repos_in_invisible_worktrees( executor: BackgroundExecutor, cx: &mut gpui::TestAppContext,