Skip to content

Commit

Permalink
revert: bring the test in assert_fs_equals_strict back as it is ignored
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveLauC committed May 22, 2024
1 parent 8419fb9 commit 8eea05b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test/sys/test_statfs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ fn assert_fs_equals_strict(fs: Statfs, vfs: Statvfs) {
assert_eq!(fs.files_free() as u64, vfs.files_free() as u64);
assert_eq!(fs.blocks_free() as u64, vfs.blocks_free() as u64);
assert_eq!(fs.blocks_available() as u64, vfs.blocks_available() as u64);
assert_eq!(fs.files() as u64, vfs.files() as u64);
assert_eq!(fs.blocks() as u64, vfs.blocks() as u64);
assert_eq!(fs.block_size() as u64, vfs.fragment_size() as u64);
}

0 comments on commit 8eea05b

Please sign in to comment.