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

tests/csplit: modify no_such_file test expected error to conform better with original csplit error

This commit is contained in:
Fuad Ismail 2025-01-07 21:44:09 +07:00 committed by Daniel Hofstetter
parent c8bc5d2455
commit 96929734ea

View file

@ -1379,7 +1379,7 @@ fn no_such_file() {
let (_, mut ucmd) = at_and_ucmd!();
ucmd.args(&["in", "0"])
.fails()
.stderr_contains("cannot access 'in': No such file or directory");
.stderr_contains("cannot open 'in' for reading: No such file or directory");
}
#[test]