From e961c0c6cf162c427373b8cd35a1cfb879631588 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Tue, 6 Dec 2022 06:59:56 -0800 Subject: [PATCH] chore(body): disable miri for a flaky test --- src/body/body.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/body/body.rs b/src/body/body.rs index 9dc1a034f9..5e7dc30219 100644 --- a/src/body/body.rs +++ b/src/body/body.rs @@ -743,6 +743,7 @@ mod tests { } #[test] + #[cfg(not(miri))] fn channel_wanter() { let (mut tx, mut rx) = Body::new_channel(DecodedLength::CHUNKED, /*wanter = */ true); @@ -764,6 +765,7 @@ mod tests { } #[test] + #[cfg(not(miri))] fn channel_notices_closure() { let (mut tx, rx) = Body::new_channel(DecodedLength::CHUNKED, /*wanter = */ true);