Skip to content

Commit 7f6edd3

Browse files
committed
Auto merge of #109874 - jyn514:subdirectory-limit, r=compiler-errors
Reduce the default max number of files in a UI test directory It doesn't make sense for the root directory to have a lower limit than subdirectories.
2 parents f211da7 + a6810cc commit 7f6edd3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/tidy/src/ui_tests.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ use std::collections::HashMap;
77
use std::fs;
88
use std::path::{Path, PathBuf};
99

10-
const ENTRY_LIMIT: usize = 1000;
1110
// FIXME: The following limits should be reduced eventually.
11+
const ENTRY_LIMIT: usize = 885;
1212
const ROOT_ENTRY_LIMIT: usize = 881;
1313
const ISSUES_ENTRY_LIMIT: usize = 1978;
1414

0 commit comments

Comments
 (0)