diff options
author | Adam Harrison <adamdharrison@gmail.com> | 2023-06-27 10:50:56 -0400 |
---|---|---|
committer | Adam Harrison <adamdharrison@gmail.com> | 2023-06-27 10:50:56 -0400 |
commit | 74b06c33ba41a24f4832439828b4e90c6a753f10 (patch) | |
tree | 890c198bef39919148b20904f3219daf9fc79173 | |
parent | 966bd543565beb00c36e4cd1ecaf4aac3b24c7ea (diff) | |
download | lite-xl-plugin-manager-74b06c33ba41a24f4832439828b4e90c6a753f10.tar.gz lite-xl-plugin-manager-74b06c33ba41a24f4832439828b4e90c6a753f10.zip |
Fixed testing library paths.
-rw-r--r-- | t/run.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |