aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorThomas Tan <thomas.tan@msn.com>2026-04-21 07:30:49 -0700
committerGitHub <noreply@github.com>2026-04-21 16:30:49 +0200
commit12ddd182d9efbdc848b540f16484a583d52da0fb (patch)
treeeda3ab047d41b50c2a09ac7b552819548d1fcad3 /tests
parentchore(ci): update stylua, selene, neovim (#2078) (diff)
downloadmason-12ddd182d9efbdc848b540f16484a583d52da0fb.tar
mason-12ddd182d9efbdc848b540f16484a583d52da0fb.tar.gz
mason-12ddd182d9efbdc848b540f16484a583d52da0fb.tar.bz2
mason-12ddd182d9efbdc848b540f16484a583d52da0fb.tar.lz
mason-12ddd182d9efbdc848b540f16484a583d52da0fb.tar.xz
mason-12ddd182d9efbdc848b540f16484a583d52da0fb.tar.zst
mason-12ddd182d9efbdc848b540f16484a583d52da0fb.zip
fix(powershell): conform to single quotes (#1740)
Co-authored-by: William Boman <william@redwill.se>
Diffstat (limited to 'tests')
-rw-r--r--tests/mason-core/installer/managers/powershell_spec.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/mason-core/installer/managers/powershell_spec.lua b/tests/mason-core/installer/managers/powershell_spec.lua
index 14478305..5560c4f2 100644
--- a/tests/mason-core/installer/managers/powershell_spec.lua
+++ b/tests/mason-core/installer/managers/powershell_spec.lua
@@ -69,7 +69,7 @@ describe("powershell manager", function()
"-NoProfile",
"-NonInteractive",
"-Command",
- [[ $ErrorActionPreference = "Stop"; $ProgressPreference = 'SilentlyContinue'; [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; echo 'Is this bash?']],
+ [[ $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; echo 'Is this bash?']],
})
end)