We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 663506a commit ecd12a9Copy full SHA for ecd12a9
test/sys/test_statfs.rs
@@ -44,7 +44,6 @@ fn check_statfs_strict(path: &str) {
44
// The cast is not unnecessary on all platforms.
45
#[allow(clippy::unnecessary_cast)]
46
fn assert_fs_equals(fs: Statfs, vfs: Statvfs) {
47
- assert_eq!(fs.files() as u64, vfs.files() as u64);
48
assert_eq!(fs.blocks() as u64, vfs.blocks() as u64);
49
assert_eq!(fs.block_size() as u64, vfs.fragment_size() as u64);
50
}
0 commit comments