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

Split off uucore into its own repository

This commit is contained in:
Alex Lyon 2019-05-12 22:42:20 -07:00
parent e1cf3a42d5
commit b73a664677
117 changed files with 283 additions and 2760 deletions

View file

@ -23,7 +23,7 @@ fn test_echo() {
println!("stderr={:?}", result.stderr);
assert!(result.success);
let out = result.stdout.trim_right();
let out = result.stdout.trim_end();
assert_eq!(out, "FOO-bar");
}