Skip to content

Commit ad63809

Browse files
authored
deactivate failing test (#1596)
1 parent f16efaf commit ad63809

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/internal.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,9 @@ mod tests {
473473
#[cfg(target_pointer_width = "64")]
474474
fn size_test() {
475475
assert_size!(IResult<&[u8], &[u8], (&[u8], u32)>, 40);
476-
assert_size!(IResult<&str, &str, u32>, 40);
476+
//FIXME: since rust 1.65, this is now 32 bytes, likely thanks to https://github.com/rust-lang/rust/pull/94075
477+
// deactivating that test for now because it'll have different values depending on the rust version
478+
// assert_size!(IResult<&str, &str, u32>, 40);
477479
assert_size!(Needed, 8);
478480
assert_size!(Err<u32>, 16);
479481
assert_size!(ErrorKind, 1);

0 commit comments

Comments
 (0)