1
0
mirror of https://gitlab.com/Anson-Projects/zine.git synced 2025-07-27 00:31:23 +00:00

Let clippy fix

This commit is contained in:
2025-06-30 15:55:41 -06:00
parent da63b300c6
commit 6e0fd55e39
2 changed files with 4 additions and 4 deletions

View File

@@ -18,7 +18,7 @@ fn test_if_feeds_are_in_alphabetical_order() {
urls.sort();
for url in urls {
println!("{}", url);
println!("{url}");
}
panic!("feeds.txt was not sorted!")
}
@@ -50,7 +50,7 @@ fn test_if_duplicates_in_feeds_list() {
if !duplicates.is_empty() {
for dupe in duplicates {
println!("{}", dupe)
println!("{dupe}")
}
panic!("Duplicate entries found!")
}