From 78e8f87e54d9d82c08cccd5cafc95126afe07274 Mon Sep 17 00:00:00 2001 From: Daniel Rainer Date: Thu, 16 Oct 2025 01:48:18 +0200 Subject: [PATCH] tests: remove duplicates These were made duplicates by removing length modifiers. Closes #11951 --- src/wutil/printf.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/wutil/printf.rs b/src/wutil/printf.rs index 542f35afc..deb6dcc99 100644 --- a/src/wutil/printf.rs +++ b/src/wutil/printf.rs @@ -55,7 +55,5 @@ mod tests { #[test] fn test_sprintf() { assert_eq!(sprintf!("Hello, %s!", "world"), "Hello, world!"); - assert_eq!(sprintf!("Hello, %s!", "world"), "Hello, world!"); - assert_eq!(sprintf!("Hello, %s!", "world"), "Hello, world!"); } }