Run cargo clippy --fix and cargo fmt

This commit is contained in:
Joakim Frostegård 2024-01-20 09:56:14 +01:00
parent 22e151d0f0
commit 5401eaf85f
28 changed files with 94 additions and 107 deletions

View file

@ -156,7 +156,7 @@ mod tests {
assert!(bytes.len() == 20);
arr.copy_from_slice(&bytes[..]);
arr.copy_from_slice(bytes);
InfoHash(arr)
}

View file

@ -270,7 +270,7 @@ mod tests {
assert!(bytes.len() == 20);
arr.copy_from_slice(&bytes[..]);
arr.copy_from_slice(bytes);
InfoHash(arr)
}
@ -372,8 +372,6 @@ mod tests {
let success = info_hashes == deserialized;
if !success {}
success
}
}