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-09 10:52:19 +01:00
committed by Daniel Hofstetter
parent c8bc5d2455
commit 96929734ea
+1 -1
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]