lib: small style change in test harness

This commit is contained in:
Matt Bilker
2022-12-05 16:44:39 +00:00
parent e900173ea1
commit 17d81e0dbd

View File

@@ -1006,7 +1006,7 @@ mod test {
fn verify_sizes() {
assert_eq!(mem::size_of::<VgpuStart>(), 0x420);
assert_eq!(mem::size_of::<VgpuConfig>(), 0x738);
assert_eq!(std::mem::size_of::<VgpuConfig2>(), 0x1358);
assert_eq!(std::mem::size_of::<LoadVgpuConfig2>(), 0x1360);
assert_eq!(mem::size_of::<VgpuConfig2>(), 0x1358);
assert_eq!(mem::size_of::<LoadVgpuConfig2>(), 0x1360);
}
}