1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 11:37:44 +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
.ucmd()
.arg("--chdir")
.arg(&temporary_path)
.arg(temporary_path)
.args(&pwd)
.succeeds()
.stdout_move_str();