fix: Correctly assert the DocIndex memory size

This commit is contained in:
Clément Renault 2019-03-16 10:48:04 +01:00
parent e56106cbdc
commit acede0f3e8
No known key found for this signature in database
GPG Key ID: 0151CDAB43460DAE

View File

@ -292,6 +292,6 @@ mod tests {
#[test]
fn docindex_mem_size() {
assert_eq!(mem::size_of::<DocIndex>(), 24);
assert_eq!(mem::size_of::<DocIndex>(), 16);
}
}