1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 03:27: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

@ -2,10 +2,7 @@ use crate::common::util::*;
#[test]
fn test_default() {
new_ucmd!()
.arg("hi")
.succeeds()
.stdout_only("hi\n");
new_ucmd!().arg("hi").succeeds().stdout_only("hi\n");
}
#[test]