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

wc: Make output width more consistent with GNU

This commit is contained in:
Jan Verbeek 2021-08-25 15:29:08 +02:00 committed by Michael Debertol
parent d0c0564947
commit c16e492cd0
2 changed files with 6 additions and 6 deletions

View file

@ -213,7 +213,7 @@ fn test_read_from_directory_error() {
.args(&["."])
.fails()
.stderr_contains(".: Is a directory")
.stdout_is("0 0 0 .\n");
.stdout_is(" 0 0 0 .\n");
}
/// Test that getting counts from nonexistent file is an error.