Restore randomized integration tests

This commit is contained in:
Mikayla Maki 2023-05-08 09:07:25 -07:00
parent 15d2f19b4a
commit 1a9afd186b
No known key found for this signature in database

View file

@ -1701,8 +1701,6 @@ impl TestPlan {
.fs .fs
.directories() .directories()
.into_iter() .into_iter()
.filter(|dir| dir.ends_with(".git"))
.collect::<Vec<_>>()
.choose(&mut self.rng) .choose(&mut self.rng)
.unwrap() .unwrap()
.clone(); .clone();
@ -1738,9 +1736,6 @@ impl TestPlan {
let repo_path = client let repo_path = client
.fs .fs
.directories() .directories()
.into_iter()
.filter(|dir| dir.ends_with(".git"))
.collect::<Vec<_>>()
.choose(&mut self.rng) .choose(&mut self.rng)
.unwrap() .unwrap()
.clone(); .clone();