From a52d39119890ccf40f17be9dc3cf4e558d54fb6d Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Fri, 19 Jan 2024 15:26:26 -0500 Subject: [PATCH] test(body): re-enable miri on a few channel tests --- src/body/incoming.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/body/incoming.rs b/src/body/incoming.rs index 628911d792..e0beba6108 100644 --- a/src/body/incoming.rs +++ b/src/body/incoming.rs @@ -554,7 +554,6 @@ mod tests { } #[test] - #[cfg(not(miri))] // TODO issue #3015 fn channel_wanter() { let (mut tx, mut rx) = Incoming::new_channel(DecodedLength::CHUNKED, /*wanter = */ true); @@ -577,7 +576,6 @@ mod tests { } #[test] - #[cfg(not(miri))] // TODO issue #3015 fn channel_notices_closure() { let (mut tx, rx) = Incoming::new_channel(DecodedLength::CHUNKED, /*wanter = */ true);