Skip to content

Commit

Permalink
test: remove test of inode count in test_statfs.rs (#2414)
Browse files Browse the repository at this point in the history
* test: remove test of inode count in test_statfs.rs

* revert: bring the test in assert_fs_equals_strict back as it is ignored
  • Loading branch information
SteveLauC committed May 22, 2024
1 parent 663506a commit ecd12a9
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion test/sys/test_statfs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ fn check_statfs_strict(path: &str) {
// The cast is not unnecessary on all platforms.
#[allow(clippy::unnecessary_cast)]
fn assert_fs_equals(fs: Statfs, vfs: Statvfs) {
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);
}
Expand Down

0 comments on commit ecd12a9

Please sign in to comment.