From 1a9afd186b452a4bdf08cd938d3b0e75218f5fd2 Mon Sep 17 00:00:00 2001 From: Mikayla Maki Date: Mon, 8 May 2023 09:07:25 -0700 Subject: [PATCH] Restore randomized integration tests --- crates/collab/src/tests/randomized_integration_tests.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/crates/collab/src/tests/randomized_integration_tests.rs b/crates/collab/src/tests/randomized_integration_tests.rs index ed50059e4aa83d699f1703da11abdc563699c6f8..d5bd0033f7d53e6b18766db6d58642b5472201c4 100644 --- a/crates/collab/src/tests/randomized_integration_tests.rs +++ b/crates/collab/src/tests/randomized_integration_tests.rs @@ -1701,8 +1701,6 @@ impl TestPlan { .fs .directories() .into_iter() - .filter(|dir| dir.ends_with(".git")) - .collect::>() .choose(&mut self.rng) .unwrap() .clone(); @@ -1738,9 +1736,6 @@ impl TestPlan { let repo_path = client .fs .directories() - .into_iter() - .filter(|dir| dir.ends_with(".git")) - .collect::>() .choose(&mut self.rng) .unwrap() .clone();