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

Merge pull request #2447 from jhscheer/locale_c

fix some issues with locale (replace "LANGUAGE" with "LC_ALL")
This commit is contained in:
Sylvestre Ledru 2021-06-23 12:36:40 +02:00 committed by GitHub
commit 87eaf6e80a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
41 changed files with 135 additions and 140 deletions

View file

@ -168,7 +168,7 @@ fn test_ls_width() {
.ucmd()
.args(&option.split(' ').collect::<Vec<_>>())
.fails()
.stderr_only("ls: invalid line width: 1a");
.stderr_only("ls: invalid line width: '1a'");
}
}