summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/headers.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/clippy/tests/headers.rs')
-rw-r--r--src/tools/clippy/tests/headers.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/clippy/tests/headers.rs b/src/tools/clippy/tests/headers.rs
index 1d1e566cb..7eec9a9cd 100644
--- a/src/tools/clippy/tests/headers.rs
+++ b/src/tools/clippy/tests/headers.rs
@@ -16,7 +16,7 @@ fn old_test_headers() {
continue;
}
- let file = fs::read_to_string(entry.path()).unwrap();
+ let file = fs::read_to_string(entry.path()).unwrap_or_else(|err| panic!("{}: {err}", entry.path().display()));
if let Some(header) = old_headers.find(&file) {
println!("Found header `{}` in {}", header.as_str(), entry.path().display());