aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Harrison <adamdharrison@gmail.com>2023-06-27 10:50:56 -0400
committerAdam Harrison <adamdharrison@gmail.com>2023-06-27 10:50:56 -0400
commit74b06c33ba41a24f4832439828b4e90c6a753f10 (patch)
tree890c198bef39919148b20904f3219daf9fc79173
parent966bd543565beb00c36e4cd1ecaf4aac3b24c7ea (diff)
downloadlite-xl-plugin-manager-74b06c33ba41a24f4832439828b4e90c6a753f10.tar.gz
lite-xl-plugin-manager-74b06c33ba41a24f4832439828b4e90c6a753f10.zip
Fixed testing library paths.
-rw-r--r--t/run.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/run.lua b/t/run.lua
index 17b5d0a..165a976 100644
--- a/t/run.lua
+++ b/t/run.lua
@@ -1,4 +1,4 @@
-local json = require "plugins.json"
+local json = require "libraries.json"
local lpm
local function assert_exists(path) if not io.open(path, "rb") then error("assertion failed: file " .. path .. " does not exist", 2) end end
local function assert_not_exists(path) if io.open(path, "rb") then error("assertion failed: file " .. path .. " exists", 2) end end