1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 11:37:44 +00:00

tests ~ fix cargo clippy complaint (clippy::useless_format)

This commit is contained in:
Roy Ivy III 2021-06-06 14:14:35 -05:00
parent 0dc8c18bac
commit 26cb6540da

View file

@ -1143,7 +1143,7 @@ fn test_ls_indicator_style() {
for opt in options {
scene
.ucmd()
.arg(format!("{}", opt))
.arg(opt.to_string())
.succeeds()
.stdout_contains(&"/");
}