mirror of
https://github.com/uutils/coreutils
synced 2024-11-05 14:21:32 +00:00
fix clippy complaint
This commit is contained in:
parent
db829321fc
commit
9798ae7987
1 changed files with 4 additions and 6 deletions
|
@ -83,12 +83,10 @@ fn test_field_sequence() {
|
|||
|
||||
#[test]
|
||||
fn test_whitespace_delimited() {
|
||||
for param in ["-w"] {
|
||||
new_ucmd!()
|
||||
.args(&[param, "-f", COMPLEX_SEQUENCE.sequence, INPUT])
|
||||
.succeeds()
|
||||
.stdout_only_fixture("whitespace_delimited.expected");
|
||||
}
|
||||
new_ucmd!()
|
||||
.args(&["-w", "-f", COMPLEX_SEQUENCE.sequence, INPUT])
|
||||
.succeeds()
|
||||
.stdout_only_fixture("whitespace_delimited.expected");
|
||||
}
|
||||
|
||||
#[test]
|
||||
|
|
Loading…
Reference in a new issue