From 4bbb33984496afca21f588cbc89f05f04dbf6133 Mon Sep 17 00:00:00 2001 From: veeso Date: Mon, 23 Aug 2021 17:57:18 +0200 Subject: [PATCH] test fixed --- src/utils/fmt.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/fmt.rs b/src/utils/fmt.rs index 60f426b..90e0194 100644 --- a/src/utils/fmt.rs +++ b/src/utils/fmt.rs @@ -297,7 +297,7 @@ mod tests { #[test] fn test_utils_fmt_pex() { 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-")); }