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

du: adjust test_du_basics_bad_name as we made it work

This commit is contained in:
Sylvestre Ledru 2023-04-09 21:24:09 +02:00
parent eea8d40e78
commit 47cb40c020

View file

@ -121,7 +121,7 @@ fn test_du_invalid_size() {
fn test_du_basics_bad_name() { fn test_du_basics_bad_name() {
new_ucmd!() new_ucmd!()
.arg("bad_name") .arg("bad_name")
.succeeds() // TODO: replace with ".fails()" once `du` is fixed .fails()
.stderr_only("du: bad_name: No such file or directory\n"); .stderr_only("du: bad_name: No such file or directory\n");
} }