Skip to content

Commit

Permalink
debian-packaging: use array instead of vec
Browse files Browse the repository at this point in the history
Per clippy.
  • Loading branch information
indygreg committed Nov 3, 2023
1 parent 761a4a0 commit fe0b97b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion debian-packaging/src/repository/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1290,7 +1290,7 @@ mod test {
)
.await?;

let wanted_paths = vec!["dists/mydist/Release", "dists/mydist/InRelease"];
let wanted_paths = ["dists/mydist/Release", "dists/mydist/InRelease"];

assert!(wanted_paths.iter().all(|path| writer
.paths
Expand Down

0 comments on commit fe0b97b

Please sign in to comment.