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

ls: fix unit tests to match last change

This commit is contained in:
Terts Diepraam 2021-04-21 13:03:31 +02:00
parent f34c992932
commit 29b5b6b276

View file

@ -650,9 +650,9 @@ mod tests {
("one\\two", "literal-show"), ("one\\two", "literal-show"),
("one\\\\two", "escape"), ("one\\\\two", "escape"),
("\"one\\\\two\"", "c"), ("\"one\\\\two\"", "c"),
("one\\two", "shell"), ("'one\\two'", "shell"),
("\'one\\two\'", "shell-always"), ("\'one\\two\'", "shell-always"),
("one\\two", "shell-escape"), ("'one\\two'", "shell-escape"),
("'one\\two'", "shell-escape-always"), ("'one\\two'", "shell-escape-always"),
], ],
); );