1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-09-16 19:56:17 +00:00

fix Rust 1.59 clippy lints

This commit is contained in:
Terts Diepraam 2022-02-24 18:33:40 +01:00
parent c9be7ccf89
commit 722c5d268f
3 changed files with 3 additions and 7 deletions

View file

@ -1644,11 +1644,7 @@ fn test_ls_indicator_style() {
// Same test as above, but with the alternate flags.
let options = vec!["--classify", "--file-type", "-p"];
for opt in options {
scene
.ucmd()
.arg(opt.to_string())
.succeeds()
.stdout_contains(&"/");
scene.ucmd().arg(opt).succeeds().stdout_contains(&"/");
}
// Classify and File-Type all contain indicators for pipes and links.

View file

@ -64,7 +64,7 @@ const TESTS: [TestCase; 10] = [
#[allow(clippy::needless_lifetimes)]
fn convert_path<'a>(path: &'a str) -> Cow<'a, str> {
#[cfg(windows)]
return path.replace("/", "\\").into();
return path.replace('/', "\\").into();
#[cfg(not(windows))]
return path.into();
}