1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 19:47:45 +00:00

fix clippy complaint

This commit is contained in:
TechHara 2022-12-13 20:34:01 -05:00
parent db829321fc
commit 9798ae7987

View file

@ -83,12 +83,10 @@ fn test_field_sequence() {
#[test] #[test]
fn test_whitespace_delimited() { fn test_whitespace_delimited() {
for param in ["-w"] { new_ucmd!()
new_ucmd!() .args(&["-w", "-f", COMPLEX_SEQUENCE.sequence, INPUT])
.args(&[param, "-f", COMPLEX_SEQUENCE.sequence, INPUT]) .succeeds()
.succeeds() .stdout_only_fixture("whitespace_delimited.expected");
.stdout_only_fixture("whitespace_delimited.expected");
}
} }
#[test] #[test]