diff options
| author | William Boman <william@redwill.se> | 2022-07-06 19:41:43 +0200 |
|---|---|---|
| committer | William Boman <william@redwill.se> | 2022-07-07 00:39:59 +0200 |
| commit | 5f634e0c37e723fc0c33e06b4fd5c2180178db40 (patch) | |
| tree | fa4f09363adefa8259e23e4d1ea036db628b1243 /tests/core/path_spec.lua | |
| parent | feat(health): use stderr for java version, also check for JAVA_HOME (#765) (diff) | |
| download | mason-5f634e0c37e723fc0c33e06b4fd5c2180178db40.tar mason-5f634e0c37e723fc0c33e06b4fd5c2180178db40.tar.gz mason-5f634e0c37e723fc0c33e06b4fd5c2180178db40.tar.bz2 mason-5f634e0c37e723fc0c33e06b4fd5c2180178db40.tar.lz mason-5f634e0c37e723fc0c33e06b4fd5c2180178db40.tar.xz mason-5f634e0c37e723fc0c33e06b4fd5c2180178db40.tar.zst mason-5f634e0c37e723fc0c33e06b4fd5c2180178db40.zip | |
mason.nvim
Diffstat (limited to 'tests/core/path_spec.lua')
| -rw-r--r-- | tests/core/path_spec.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/core/path_spec.lua b/tests/core/path_spec.lua index e4e964d9..3d05fd14 100644 --- a/tests/core/path_spec.lua +++ b/tests/core/path_spec.lua @@ -1,4 +1,4 @@ -local path = require "nvim-lsp-installer.core.path" +local path = require "mason.core.path" describe("path", function() it("concatenates paths", function() @@ -8,8 +8,8 @@ describe("path", function() it("concatenates paths on Windows", function() local old_os = jit.os jit.os = "windows" - package.loaded["nvim-lsp-installer.core.path"] = nil - local path = require "nvim-lsp-installer.core.path" + package.loaded["mason.core.path"] = nil + local path = require "mason.core.path" assert.equal([[foo\bar\baz\~]], path.concat { "foo", "bar", "baz", "~" }) jit.os = old_os end) |
