.cargo: Run clippy on ALL the source files (#2949)

This commit is contained in:
Thomas Eizinger
2022-10-04 18:24:38 +11:00
committed by GitHub
parent e6da99e4f8
commit 1b793242e6
50 changed files with 5497 additions and 5657 deletions

View File

@ -252,7 +252,7 @@ mod tests {
);
block_on(poll_fn(|cx| loop {
if let Poll::Pending = handler.poll(cx) {
if handler.poll(cx).is_pending() {
return Poll::Ready(());
}
}));