diff --git a/zebra-test/src/transcript.rs b/zebra-test/src/transcript.rs index feea1b0c8..ec6fc778c 100644 --- a/zebra-test/src/transcript.rs +++ b/zebra-test/src/transcript.rs @@ -81,7 +81,7 @@ where C: Service, C::Error: Into, { - 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 // bound on C::Error let fut = to_check