Skip to content

Commit a6810cc

Browse files
committed
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.
1 parent 90a9f69 commit a6810cc

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)