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

rustfmt the recent change

This commit is contained in:
Sylvestre Ledru 2021-04-17 11:22:49 +02:00 committed by Sylvestre Ledru
parent d0c7e8c09e
commit c5b43c0994
10 changed files with 43 additions and 32 deletions

View file

@ -25,6 +25,8 @@ fn test_hostname_full() {
let ls_short_res = new_ucmd!().arg("-s").succeeds();
assert!(!ls_short_res.stdout_str().trim().is_empty());
new_ucmd!().arg("-f").succeeds()
new_ucmd!()
.arg("-f")
.succeeds()
.stdout_contains(ls_short_res.stdout_str().trim());
}