tests: remove duplicates

These were made duplicates by removing length modifiers.

Closes #11951
This commit is contained in:
Daniel Rainer
2025-10-16 01:48:18 +02:00
committed by Johannes Altmanninger
parent 8cb5ad9693
commit 78e8f87e54

View File

@@ -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!");
}
}