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

Merge branch 'master' of github.com:uutils/coreutils into refactoring_parse_size

* truncate: use "parse_size" from uucore
* workaround fix for "test_reference"
This commit is contained in:
Jan Scheer 2021-05-31 19:11:06 +02:00
commit 8bf1e33b5d
128 changed files with 2052 additions and 1529 deletions

View file

@ -204,7 +204,7 @@ fn test_du_d_flag() {
// TODO: gnu `du` doesn't use trailing "/" here
// result.stdout_str(), result_reference.stdout_str()
result.stdout_str().trim_end_matches("/\n"),
result_reference.stdout_str().trim_end_matches("\n")
result_reference.stdout_str().trim_end_matches('\n')
);
return;
}