1
0
mirror of https://github.com/meilisearch/MeiliSearch synced 2025-03-29 11:00:39 +01:00

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

@ -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);
}
}