Cargo fmt

pull/23/head
Bradlee Speice 2020-01-12 21:19:26 -05:00
parent b86a876fdf
commit b9dbfdd29f
1 changed files with 2 additions and 1 deletions

View File

@ -103,7 +103,8 @@ mod tests {
.expect("Unable to memory map CnC file")
};
let metadata: &MetaDataDefinition = unsafe { &*(mmap.as_ptr() as *const MetaDataDefinition) };
let metadata: &MetaDataDefinition =
unsafe { &*(mmap.as_ptr() as *const MetaDataDefinition) };
assert_eq!(metadata.cnc_version, CNC_VERSION);
}
}