avatar: Bump width/height to u16
This mirrors XEP revision 1.1.2, which made width and height xs:unsignedShort instead of xs:unsignedByte, as per common usage.
This commit is contained in:
parent
12265e9237
commit
0d893edb69
1 changed files with 4 additions and 4 deletions
|
@ -27,10 +27,10 @@ generate_element!(
|
|||
bytes: Required<u16> = "bytes",
|
||||
|
||||
/// The width of the image in pixels.
|
||||
width: Option<u8> = "width",
|
||||
width: Option<u16> = "width",
|
||||
|
||||
/// The height of the image in pixels.
|
||||
height: Option<u8> = "height",
|
||||
height: Option<u16> = "height",
|
||||
|
||||
/// The SHA-1 hash of the image data for the specified content-type.
|
||||
id: Required<Sha1HexAttribute> = "id",
|
||||
|
@ -66,7 +66,7 @@ mod tests {
|
|||
#[test]
|
||||
fn test_size() {
|
||||
assert_size!(Metadata, 12);
|
||||
assert_size!(Info, 60);
|
||||
assert_size!(Info, 64);
|
||||
assert_size!(Data, 12);
|
||||
}
|
||||
|
||||
|
@ -74,7 +74,7 @@ mod tests {
|
|||
#[test]
|
||||
fn test_size() {
|
||||
assert_size!(Metadata, 24);
|
||||
assert_size!(Info, 112);
|
||||
assert_size!(Info, 120);
|
||||
assert_size!(Data, 24);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue