mirror of
https://github.com/fluencelabs/wasmer
synced 2025-06-29 08:31:32 +00:00
fix typos in vfs tests
This commit is contained in:
@ -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
|
||||||
|
Reference in New Issue
Block a user