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

Merge pull request #7106 from cakebaker/csplit_simplify_test

csplit: simplify test
This commit is contained in:
Sylvestre Ledru 2025-01-09 15:38:18 +01:00 committed by GitHub
commit cef9a2b960
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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