From 6fa35fb1a687dc800f32b045a10253f2347af28f Mon Sep 17 00:00:00 2001 From: Eduardo Pinho Date: Sat, 6 Jan 2024 16:25:51 +0000 Subject: [PATCH] [pixeldata] Relax GetAttributeError size to 80 bytes --- pixeldata/src/attribute.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pixeldata/src/attribute.rs b/pixeldata/src/attribute.rs index e1ed3025b..ef3946b0d 100644 --- a/pixeldata/src/attribute.rs +++ b/pixeldata/src/attribute.rs @@ -502,8 +502,8 @@ mod tests { fn errors_are_not_too_large() { let size = std::mem::size_of::(); assert!( - size <= 64, - "GetAttributeError size is too large ({} > 64)", + size <= 80, + "GetAttributeError size is too large ({} > 80)", size ); }