From cc4d01f63e4ddb1b6dcb49280a8a476159155f75 Mon Sep 17 00:00:00 2001 From: Luke Boswell Date: Thu, 9 Jan 2025 12:27:25 +1100 Subject: [PATCH] allow(clippy::match_single_binding) --- crates/compiler/test_syntax/tests/test_snapshots.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/compiler/test_syntax/tests/test_snapshots.rs b/crates/compiler/test_syntax/tests/test_snapshots.rs index abcfeb6818..4d9c44565d 100644 --- a/crates/compiler/test_syntax/tests/test_snapshots.rs +++ b/crates/compiler/test_syntax/tests/test_snapshots.rs @@ -780,6 +780,7 @@ mod test_snapshots { /// Does the given test name expect the canonicalization process to panic? fn expect_canonicalize_panics(test_name: &str) -> bool { + #[allow(clippy::match_single_binding)] match test_name { // This is the current list as of writing. // We should be driving these down to zero over time.