We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f1f1ab commit 27e485aCopy full SHA for 27e485a
tests/performance.rs
@@ -331,7 +331,7 @@ mod tests {
331
let random_files = find_random_files_with_options(
332
test_repo,
333
FindRandomFilesOptions {
334
- random_file_count: 1000,
+ random_file_count: 2200,
335
large_file_count: 0,
336
},
337
)
@@ -342,12 +342,6 @@ mod tests {
342
let all_files: Vec<String> = random_files.random_files;
343
println!("Found {} files to edit", all_files.len());
344
345
- assert!(
346
- all_files.len() == 1000,
347
- "Should have at least 100 files to edit, found {}",
348
- all_files.len()
349
- );
350
-
351
// Create a sampler that runs 5 times (fewer due to the large number of files)
352
let sampler = Sampler::new(5);
353
0 commit comments