From 920debcc015b147c66b4143c85c88f93012fd2ae Mon Sep 17 00:00:00 2001 From: Winter Date: Thu, 8 May 2025 20:52:53 -0400 Subject: [PATCH] cleanup: remove fixed clippy bug workaround --- lib/src/default_index/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/src/default_index/mod.rs b/lib/src/default_index/mod.rs index a5ba3f8aa..2c8133f3b 100644 --- a/lib/src/default_index/mod.rs +++ b/lib/src/default_index/mod.rs @@ -175,7 +175,6 @@ mod tests { let id_1 = CommitId::from_hex("111111"); let change_id1 = new_change_id(); let id_2 = CommitId::from_hex("222222"); - #[expect(clippy::redundant_clone)] // Work around nightly clippy false positive // TODO: Remove the exception after https://github.com/rust-lang/rust-clippy/issues/10577 // is fixed or file a new bug. let change_id2 = change_id1.clone();