1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 03:57:44 +00:00

refactor/uucore ~ polish spelling (comments, names, and exceptions)

This commit is contained in:
Roy Ivy III 2021-05-29 22:25:46 -05:00
parent 954b3436d9
commit 40e136d092

View file

@ -390,8 +390,8 @@ mod tests {
test: "C:/you/later", test: "C:/you/later",
}, },
NormalizePathTestCase { NormalizePathTestCase {
path: "\\networkshare/a//foo//./bar", path: "\\networkShare/a//foo//./bar",
test: "\\networkshare/a/foo/bar", test: "\\networkShare/a/foo/bar",
}, },
]; ];
@ -411,6 +411,7 @@ mod tests {
#[cfg(unix)] #[cfg(unix)]
#[test] #[test]
fn test_display_permissions() { fn test_display_permissions() {
// spell-checker:ignore (perms) brwsr drwxr rwxr
assert_eq!( assert_eq!(
"drwxr-xr-x", "drwxr-xr-x",
display_permissions_unix(S_IFDIR | 0o755, true) display_permissions_unix(S_IFDIR | 0o755, true)