Fix clippy
All checks were successful
Cargo CI / Build and Test (pull_request) Successful in 1m1s
Cargo CI / Lint (pull_request) Successful in 43s

This commit is contained in:
Wojciech Kozlowski 2024-01-11 21:48:31 +01:00
parent 690c172cf6
commit 6017cfa57f

View File

@ -1079,7 +1079,7 @@ mod tests {
let mut expected: Vec<Artist> = vec![];
music_hoard.add_artist(artist_id.clone());
_ = expected.push(Artist::new(artist_id.clone()));
expected.push(Artist::new(artist_id.clone()));
assert_eq!(music_hoard.collection, expected);
music_hoard.add_artist(artist_id.clone());