Skip to content

Commit

Permalink
Reduce the default max number of files in a UI test directory
Browse files Browse the repository at this point in the history
It doesn't make sense for the root directory to have a lower limit than
subdirectories.
  • Loading branch information
jyn514 committed Apr 5, 2023
1 parent 90a9f69 commit a6810cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/tidy/src/ui_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ use std::collections::HashMap;
use std::fs;
use std::path::{Path, PathBuf};

const ENTRY_LIMIT: usize = 1000;
// FIXME: The following limits should be reduced eventually.
const ENTRY_LIMIT: usize = 885;
const ROOT_ENTRY_LIMIT: usize = 881;
const ISSUES_ENTRY_LIMIT: usize = 1978;

Expand Down

0 comments on commit a6810cc

Please sign in to comment.