From 35b7a98f4fd228a826c88499c5374acdd772e09f Mon Sep 17 00:00:00 2001 From: Philipp Hansch Date: Wed, 17 Jul 2019 21:13:33 +0200 Subject: [PATCH] Decrease maximum length for stderr files Now at 275. --- clippy_dev/src/stderr_length_check.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clippy_dev/src/stderr_length_check.rs b/clippy_dev/src/stderr_length_check.rs index ba8e5f83ef4..3049c45ddc8 100644 --- a/clippy_dev/src/stderr_length_check.rs +++ b/clippy_dev/src/stderr_length_check.rs @@ -7,7 +7,7 @@ // The maximum length allowed for stderr files. // // We limit this because small files are easier to deal with than bigger files. -const LIMIT: usize = 320; +const LIMIT: usize = 275; pub fn check() { let stderr_files = stderr_files(); -- 2.44.0