Skip to content

Commit ecd12a9

Browse files
authored
test: remove test of inode count in test_statfs.rs (#2414)
* test: remove test of inode count in test_statfs.rs * revert: bring the test in assert_fs_equals_strict back as it is ignored
1 parent 663506a commit ecd12a9

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

test/sys/test_statfs.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ fn check_statfs_strict(path: &str) {
4444
// The cast is not unnecessary on all platforms.
4545
#[allow(clippy::unnecessary_cast)]
4646
fn assert_fs_equals(fs: Statfs, vfs: Statvfs) {
47-
assert_eq!(fs.files() as u64, vfs.files() as u64);
4847
assert_eq!(fs.blocks() as u64, vfs.blocks() as u64);
4948
assert_eq!(fs.block_size() as u64, vfs.fragment_size() as u64);
5049
}

0 commit comments

Comments
 (0)