Clippy nightly: replace a "while let" with a "for" loop

This commit is contained in:
teor 2021-05-25 10:36:43 +10:00 committed by Deirdre Connolly
parent f0549b2f7c
commit 227757ae68
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ where
C: Service<R, Response = S>, C: Service<R, Response = S>,
C::Error: Into<Error>, C::Error: Into<Error>,
{ {
while let Some((req, expected_rsp)) = self.messages.next() { for (req, expected_rsp) in &mut self.messages {
// These unwraps could propagate errors with the correct // These unwraps could propagate errors with the correct
// bound on C::Error // bound on C::Error
let fut = to_check let fut = to_check