mirror of
https://github.com/str4d/rage.git
synced 2025-04-03 19:07:42 +03:00
Fix clippy lints
This commit is contained in:
parent
490fca7167
commit
de96ae7153
5 changed files with 31 additions and 24 deletions
|
@ -176,15 +176,13 @@ impl<R: Read, W: Write> Connection<R, W> {
|
|||
fn grease_gun(&mut self) -> impl Iterator<Item = Stanza> {
|
||||
// Add 5% grease
|
||||
let mut rng = thread_rng();
|
||||
(0..2)
|
||||
.map(move |_| {
|
||||
if rng.gen_range(0..100) < 5 {
|
||||
Some(grease_the_joint())
|
||||
} else {
|
||||
None
|
||||
}
|
||||
})
|
||||
.flatten()
|
||||
(0..2).filter_map(move |_| {
|
||||
if rng.gen_range(0..100) < 5 {
|
||||
Some(grease_the_joint())
|
||||
} else {
|
||||
None
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
fn done(&mut self) -> io::Result<()> {
|
||||
|
@ -484,7 +482,7 @@ mod tests {
|
|||
.unwrap();
|
||||
let stanza = plugin_conn
|
||||
.unidir_receive::<_, (), (), _, _, _, _>(
|
||||
("test", |s| Ok(s)),
|
||||
("test", Ok),
|
||||
("other", |_| Err(())),
|
||||
(None, |_| Ok(())),
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue