test fixed

This commit is contained in:
veeso
2021-08-23 17:57:18 +02:00
parent 92b081c076
commit 4bbb339844

View File

@@ -297,7 +297,7 @@ mod tests {
#[test] #[test]
fn test_utils_fmt_pex() { fn test_utils_fmt_pex() {
assert_eq!(fmt_pex(UnixPex::from(7)), String::from("rwx")); assert_eq!(fmt_pex(UnixPex::from(7)), String::from("rwx"));
assert_eq!(fmt_pex(UnixPex::from(5)), String::from("r-xr-x")); assert_eq!(fmt_pex(UnixPex::from(5)), String::from("r-x"));
assert_eq!(fmt_pex(UnixPex::from(6)), String::from("rw-")); assert_eq!(fmt_pex(UnixPex::from(6)), String::from("rw-"));
} }