aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorWilliam Boman <william@redwill.se>2025-03-02 02:34:16 +0100
committerWilliam Boman <william@redwill.se>2025-03-03 02:17:02 +0100
commit11b8792af0462f5255c86b2d51d7430a223f4136 (patch)
tree11e2bbb8225d43c1914dc5d53034dd2915a43350 /tests
parentfix(spawn): expand executable paths on Windows before passing to uv_spawn (#1... (diff)
downloadmason-11b8792af0462f5255c86b2d51d7430a223f4136.tar
mason-11b8792af0462f5255c86b2d51d7430a223f4136.tar.gz
mason-11b8792af0462f5255c86b2d51d7430a223f4136.tar.bz2
mason-11b8792af0462f5255c86b2d51d7430a223f4136.tar.lz
mason-11b8792af0462f5255c86b2d51d7430a223f4136.tar.xz
mason-11b8792af0462f5255c86b2d51d7430a223f4136.tar.zst
mason-11b8792af0462f5255c86b2d51d7430a223f4136.zip
refactor(registry): refactor registry initialization
Diffstat (limited to 'tests')
-rw-r--r--tests/mason/setup_spec.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/mason/setup_spec.lua b/tests/mason/setup_spec.lua
index f3193a27..a4320bb3 100644
--- a/tests/mason/setup_spec.lua
+++ b/tests/mason/setup_spec.lua
@@ -10,7 +10,7 @@ describe("mason setup", function()
settings.set(settings._DEFAULT_SETTINGS)
end)
- it("should enhance the PATH environment", function()
+ it("should modify the PATH environment", function()
mason.setup()
local global_location = InstallLocation.global()
assert.equals(("%s:/usr/local/bin:/usr/bin"):format(global_location:bin()), vim.env.PATH)