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

use semicolons if nothing returned

This commit is contained in:
Daniel Eades 2022-01-30 13:55:03 +01:00
parent a2d5f06be4
commit 784f2e2ea1
56 changed files with 125 additions and 127 deletions

View file

@ -91,7 +91,7 @@ fn test_head_count() {
result_seq.iter().all(|x| input_seq.contains(x)),
"Output includes element not from input: {}",
result.stdout_str()
)
);
}
#[test]
@ -129,7 +129,7 @@ fn test_repeat() {
.iter()
.filter(|x| !input_seq.contains(x))
.collect::<Vec<&i32>>()
)
);
}
#[test]