Skip to content

Commit

Permalink
deactivate failing test (#1596)
Browse files Browse the repository at this point in the history
  • Loading branch information
Geal committed Dec 28, 2022
1 parent f16efaf commit ad63809
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/internal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,9 @@ mod tests {
#[cfg(target_pointer_width = "64")]
fn size_test() {
assert_size!(IResult<&[u8], &[u8], (&[u8], u32)>, 40);
assert_size!(IResult<&str, &str, u32>, 40);
//FIXME: since rust 1.65, this is now 32 bytes, likely thanks to https://github.com/rust-lang/rust/pull/94075
// deactivating that test for now because it'll have different values depending on the rust version
// assert_size!(IResult<&str, &str, u32>, 40);
assert_size!(Needed, 8);
assert_size!(Err<u32>, 16);
assert_size!(ErrorKind, 1);
Expand Down

0 comments on commit ad63809

Please sign in to comment.