xmpp-parsers: Fix size tests on 32-bit

This commit is contained in:
Emmanuel Gil Peyrot 2023-06-20 14:14:15 +02:00
commit c7887efbc7
22 changed files with 25 additions and 25 deletions

View file

@ -48,7 +48,7 @@ mod tests {
#[test]
fn test_size() {
assert_size!(JidPrepQuery, 12);
assert_size!(JidPrepResponse, 40);
assert_size!(JidPrepResponse, 20);
}
#[cfg(target_pointer_width = "64")]