From cd077aabc150a19d6e0ea61ec1d4181ee21e38fa Mon Sep 17 00:00:00 2001 From: Frank Elsinga Date: Wed, 21 May 2025 14:45:30 +0200 Subject: [PATCH] fix clippy::uninlined_format_args --- martin/src/cog/source.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/martin/src/cog/source.rs b/martin/src/cog/source.rs index 48362e587..4cc5357d6 100644 --- a/martin/src/cog/source.rs +++ b/martin/src/cog/source.rs @@ -598,7 +598,7 @@ mod tests { // Both are None, which is expected } _ => { - panic!("Origin {:?} does not match expected {:?}", origin, expected); + panic!("Origin {origin:?} does not match expected {expected:?}"); } } }