xmpp-parsers: Fix the size tests on AArch64 and amd64

These two changes were caused by the HashMap implementation having been
switched to hashbrown, and thus using less memory and being faster.
This commit is contained in:
Emmanuel Gil Peyrot 2020-10-29 18:39:48 +01:00
commit c25e87b04f
2 changed files with 2 additions and 2 deletions

View file

@ -126,7 +126,7 @@ mod tests {
#[cfg(target_pointer_width = "64")]
#[test]
fn test_size() {
assert_size!(Query, 168);
assert_size!(Query, 160);
}
#[test]

View file

@ -516,7 +516,7 @@ mod tests {
#[cfg(target_pointer_width = "64")]
#[test]
fn test_size() {
assert_size!(XhtmlIm, 56);
assert_size!(XhtmlIm, 48);
assert_size!(Child, 112);
assert_size!(Tag, 104);
}