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 ca993fb commit bd42b86Copy full SHA for bd42b86
src/fs/constants.rs
@@ -53,6 +53,8 @@ mod tests {
53
assert_eq!(some_stat.st_mode, 0 as RawMode);
54
assert_eq!(some_stat.st_dev, 0 as Dev);
55
assert_eq!(some_stat.st_rdev, 0 as Dev);
56
+ assert_eq!(some_stat.st_uid, 0 as crate::ugid::RawUid);
57
+ assert_eq!(some_stat.st_gid, 0 as crate::ugid::RawGid);
58
59
// `Stat` should match `c::stat` or `c::stat64` unless we need y2038
60
// fixes and are using a different layout.
0 commit comments