1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 19:47:45 +00:00

Fix "needless borrow" clippy warning in env test

This commit is contained in:
Daniel Hofstetter 2022-11-04 11:10:35 +01:00
parent 7df36bb153
commit 8114abc956

View file

@ -220,7 +220,7 @@ fn test_change_directory() {
let out = scene let out = scene
.ucmd() .ucmd()
.arg("--chdir") .arg("--chdir")
.arg(&temporary_path) .arg(temporary_path)
.args(&pwd) .args(&pwd)
.succeeds() .succeeds()
.stdout_move_str(); .stdout_move_str();