Skip to content

Commit

Permalink
chore(body): disable miri for a flaky test (#3073)
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmonstar authored Dec 5, 2022
1 parent 252d8a7 commit 390de6c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/body/incoming.rs
Original file line number Diff line number Diff line change
Expand Up @@ -489,6 +489,7 @@ mod tests {
}

#[test]
#[cfg(not(miri))] // TODO issue #3015
fn channel_wanter() {
let (mut tx, mut rx) =
Incoming::new_channel(DecodedLength::CHUNKED, /*wanter = */ true);
Expand All @@ -511,6 +512,7 @@ mod tests {
}

#[test]
#[cfg(not(miri))] // TODO issue #3015
fn channel_notices_closure() {
let (mut tx, rx) = Incoming::new_channel(DecodedLength::CHUNKED, /*wanter = */ true);

Expand Down

0 comments on commit 390de6c

Please sign in to comment.