diff options
author | Adam Harrison <adamdharrison@gmail.com> | 2024-03-20 11:40:12 -0400 |
---|---|---|
committer | Adam Harrison <adamdharrison@gmail.com> | 2024-03-20 11:40:12 -0400 |
commit | 753cc1f885786dcebb4ca336a09319b925217c48 (patch) | |
tree | f39c52f2cfec8805bbcb76d07db83845a4b99ddc /t/run.lua | |
parent | f40cdf7b70a4e1b3bebbc09fb1d15826a4ca924e (diff) | |
download | lite-xl-plugin-manager-753cc1f885786dcebb4ca336a09319b925217c48.tar.gz lite-xl-plugin-manager-753cc1f885786dcebb4ca336a09319b925217c48.zip |
Remove unecessary require.
Diffstat (limited to 't/run.lua')
-rw-r--r-- | t/run.lua | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -1,4 +1,3 @@ -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 |