summaryrefslogtreecommitdiffstats
path: root/tests/by-util/test_ls.rs
diff options
context:
space:
mode:
authorSylvestre Ledru <sylvestre@debian.org>2022-10-12 22:04:21 +0200
committerSylvestre Ledru <sylvestre@debian.org>2022-10-13 09:07:22 +0200
commit6e14dea73b5bb0ded255f70307fc30619f10ee3a (patch)
treeac01b2352472a1a8ca9ae1f79b145374255d132d /tests/by-util/test_ls.rs
parent32b1fc6420d1c39c5850d29311ce1c3de737f49f (diff)
Fix some clippy warnings
Fixed with `cargo clippy --features unix --fix` and manually
Diffstat (limited to 'tests/by-util/test_ls.rs')
-rw-r--r--tests/by-util/test_ls.rs34
1 files changed, 17 insertions, 17 deletions
diff --git a/tests/by-util/test_ls.rs b/tests/by-util/test_ls.rs
index a2a88a20a..a7891e737 100644
--- a/tests/by-util/test_ls.rs
+++ b/tests/by-util/test_ls.rs
@@ -561,8 +561,8 @@ fn test_ls_a() {
.arg("-a")
.arg("-1")
.succeeds()
- .stdout_contains(&".test-1")
- .stdout_contains(&"..")
+ .stdout_contains(".test-1")
+ .stdout_contains("..")
.stdout_matches(&re_pwd);
scene
@@ -590,8 +590,8 @@ fn test_ls_a() {
.arg("-1")
.arg("some-dir")
.succeeds()
- .stdout_contains(&".test-2")
- .stdout_contains(&"..")
+ .stdout_contains(".test-2")
+ .stdout_contains("..")
.no_stderr()
.stdout_matches(&re_pwd);
@@ -1821,7 +1821,7 @@ fn test_ls_files_dirs() {
.ucmd()
.arg("doesntexist")
.fails()
- .stderr_contains(&"'doesntexist': No such file or directory");
+ .stderr_contains("'doesntexist': No such file or directory");
// One exists, the other doesn't
scene
@@ -1829,8 +1829,8 @@ fn test_ls_files_dirs() {
.arg("a")
.arg("doesntexist")
.fails()
- .stderr_contains(&"'doesntexist': No such file or directory")
- .stdout_contains(&"a:");
+ .stderr_contains("'doesntexist': No such file or directory")
+ .stdout_contains("a:");
}
#[test]
@@ -1851,7 +1851,7 @@ fn test_ls_recursive() {
.arg("z")
.arg("-R")
.succeeds()
- .stdout_contains(&"z:");
+ .stdout_contains("z:");
let result = scene
.ucmd()
.arg("--color=never")
@@ -1861,7 +1861,7 @@ fn test_ls_recursive() {
.succeeds();
#[cfg(not(windows))]
- result.stdout_contains(&"a/b:\nb");
+ result.stdout_contains("a/b:\nb");
#[cfg(windows)]
result.stdout_contains(&"a\\b:\nb");
}
@@ -2014,7 +2014,7 @@ fn test_ls_indicator_style() {
"-p",
] {
// Verify that classify and file-type both contain indicators for symlinks.
- scene.ucmd().arg(opt).succeeds().stdout_contains(&"/");
+ scene.ucmd().arg(opt).succeeds().stdout_contains("/");
}
// Classify, Indicator options should not contain any indicators when value is none.
@@ -2030,9 +2030,9 @@ fn test_ls_indicator_style() {
.ucmd()
.arg(opt)
.succeeds()
- .stdout_does_not_contain(&"/")
- .stdout_does_not_contain(&"@")
- .stdout_does_not_contain(&"|");
+ .stdout_does_not_contain("/")
+ .stdout_does_not_contain("@")
+ .stdout_does_not_contain("|");
}
// Classify and File-Type all contain indicators for pipes and links.
@@ -2043,8 +2043,8 @@ fn test_ls_indicator_style() {
.ucmd()
.arg(format!("--indicator-style={}", opt))
.succeeds()
- .stdout_contains(&"@")
- .stdout_contains(&"|");
+ .stdout_contains("@")
+ .stdout_contains("|");
}
// Test sockets. Because the canonical way of making sockets to test is with
@@ -2631,7 +2631,7 @@ fn test_ls_ignore_hide() {
.arg("--ignore=READ[ME")
.arg("-1")
.succeeds()
- .stderr_contains(&"Invalid pattern")
+ .stderr_contains("Invalid pattern")
.stdout_is("CONTRIBUTING.md\nREADME.md\nREADMECAREFULLY.md\nsome_other_file\n");
scene
@@ -2639,7 +2639,7 @@ fn test_ls_ignore_hide() {
.arg("--hide=READ[ME")
.arg("-1")
.succeeds()
- .stderr_contains(&"Invalid pattern")
+ .stderr_contains("Invalid pattern")
.stdout_is("CONTRIBUTING.md\nREADME.md\nREADMECAREFULLY.md\nsome_other_file\n");
}