From a6810ccb258b6ca5a6436848f47ae91393822162 Mon Sep 17 00:00:00 2001 From: jyn Date: Sun, 2 Apr 2023 19:45:27 -0400 Subject: [PATCH] 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. --- src/tools/tidy/src/ui_tests.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/tidy/src/ui_tests.rs b/src/tools/tidy/src/ui_tests.rs index f582666ab28..0f08f5d0b70 100644 --- a/src/tools/tidy/src/ui_tests.rs +++ b/src/tools/tidy/src/ui_tests.rs @@ -7,8 +7,8 @@ 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;