chore: clippy-2

This commit is contained in:
jimmyfraiture
2025-09-22 13:21:21 +01:00
parent 5996ee0e5f
commit 3b526789b7
79 changed files with 657 additions and 599 deletions

View File

@@ -114,7 +114,10 @@ mod tests {
use super::seek_sequence;
fn to_vec(strings: &[&str]) -> Vec<String> {
strings.iter().map(|s| s.to_string()).collect()
strings
.iter()
.map(std::string::ToString::to_string)
.collect()
}
#[test]