mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 19:47:45 +00:00
fix lint errors attempt 2
This commit is contained in:
parent
bb64e699ec
commit
eeafdc7021
1 changed files with 5 additions and 1 deletions
|
@ -205,6 +205,10 @@ fn test_shuf_multiple_input_line_count() {
|
|||
|
||||
result.no_stderr();
|
||||
|
||||
let result_count = result.stdout_str().split('\n').filter(|x| !x.is_empty()).count();
|
||||
let result_count = result
|
||||
.stdout_str()
|
||||
.split('\n')
|
||||
.filter(|x| !x.is_empty())
|
||||
.count();
|
||||
assert_eq!(result_count, 5, "Output should have 5 items");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue