Autofix Cask/ArrayAlphabetization offenses in test fixtures

This commit is contained in:
Issy Long 2024-01-14 20:57:08 +00:00
parent 338e30ff9b
commit 2c9e6e425b
No known key found for this signature in database
GPG Key ID: 8247C390DADC67D4
5 changed files with 9 additions and 9 deletions

View File

@ -32,7 +32,7 @@ cask "everything" do
} }
uninstall launchctl: "com.every.thing.agent", uninstall launchctl: "com.every.thing.agent",
delete: ["/Library/EverythingHelperTools"], delete: "/Library/EverythingHelperTools",
kext: "com.every.thing.driver", kext: "com.every.thing.driver",
signal: [ signal: [
["TERM", "com.every.thing.controller#{version.major}"], ["TERM", "com.every.thing.controller#{version.major}"],

View File

@ -12,10 +12,10 @@ cask "with-installable" do
login_item: "Fancy", login_item: "Fancy",
delete: [ delete: [
"#{TEST_TMPDIR}/absolute_path", "#{TEST_TMPDIR}/absolute_path",
"~/path_with_tilde",
"#{TEST_TMPDIR}/glob_path*", "#{TEST_TMPDIR}/glob_path*",
"impermissible/relative/path",
"/another/impermissible/../relative/path", "/another/impermissible/../relative/path",
"impermissible/relative/path",
"~/path_with_tilde",
], ],
rmdir: "#{TEST_TMPDIR}/empty_directory_path" rmdir: "#{TEST_TMPDIR}/empty_directory_path"
end end

View File

@ -9,9 +9,9 @@ cask "with-uninstall-delete" do
uninstall delete: [ uninstall delete: [
"#{TEST_TMPDIR}/absolute_path", "#{TEST_TMPDIR}/absolute_path",
"~/path_with_tilde",
"#{TEST_TMPDIR}/glob_path*", "#{TEST_TMPDIR}/glob_path*",
"impermissible/relative/path",
"/another/impermissible/../relative/path", "/another/impermissible/../relative/path",
"impermissible/relative/path",
"~/path_with_tilde",
] ]
end end

View File

@ -9,9 +9,9 @@ cask "with-uninstall-trash" do
uninstall trash: [ uninstall trash: [
"#{TEST_TMPDIR}/absolute_path", "#{TEST_TMPDIR}/absolute_path",
"~/path_with_tilde",
"#{TEST_TMPDIR}/glob_path*", "#{TEST_TMPDIR}/glob_path*",
"impermissible/relative/path",
"/another/impermissible/../relative/path", "/another/impermissible/../relative/path",
"impermissible/relative/path",
"~/path_with_tilde",
] ]
end end

View File

@ -9,9 +9,9 @@ cask "with-zap-trash" do
zap trash: [ zap trash: [
"#{TEST_TMPDIR}/absolute_path", "#{TEST_TMPDIR}/absolute_path",
"~/path_with_tilde",
"#{TEST_TMPDIR}/glob_path*", "#{TEST_TMPDIR}/glob_path*",
"impermissible/relative/path",
"/another/impermissible/../relative/path", "/another/impermissible/../relative/path",
"impermissible/relative/path",
"~/path_with_tilde",
] ]
end end