fix typos in vfs tests

This commit is contained in:
Mackenzie Clark
2019-03-12 12:01:45 -07:00
parent f7f4fbf08a
commit b5697d854a

View File

@ -137,7 +137,7 @@ mod open_test {
// ASSERT: // ASSERT:
assert!( assert!(
vfs_result.is_ok(), vfs_result.is_ok(),
"Failed to create file system from empty archive" "Failed to create file system from archive"
); );
let mut vfs = vfs_result.unwrap(); let mut vfs = vfs_result.unwrap();
// open the file, get a file descriptor // open the file, get a file descriptor
@ -173,7 +173,7 @@ mod open_test {
// ASSERT: // ASSERT:
assert!( assert!(
vfs_result.is_ok(), vfs_result.is_ok(),
"Failed to create file system from empty archive" "Failed to create file system from archive"
); );
let mut vfs = vfs_result.unwrap(); let mut vfs = vfs_result.unwrap();
// read the file // read the file
@ -224,7 +224,7 @@ mod read_test {
// ASSERT: // ASSERT:
assert!( assert!(
vfs_result.is_ok(), vfs_result.is_ok(),
"Failed to create file system from empty archive" "Failed to create file system from archive"
); );
let mut vfs = vfs_result.unwrap(); let mut vfs = vfs_result.unwrap();
// read the file // read the file
@ -256,7 +256,7 @@ mod read_test {
// ASSERT: // ASSERT:
assert!( assert!(
vfs_result.is_ok(), vfs_result.is_ok(),
"Failed to create file system from empty archive" "Failed to create file system from archive"
); );
let mut vfs = vfs_result.unwrap(); let mut vfs = vfs_result.unwrap();
// read the file // read the file