aboutsummaryrefslogtreecommitdiff
path: root/t/run.lua
diff options
context:
space:
mode:
authorAdam Harrison <adamdharrison@gmail.com>2024-03-20 11:40:12 -0400
committerAdam Harrison <adamdharrison@gmail.com>2024-03-20 11:40:12 -0400
commit753cc1f885786dcebb4ca336a09319b925217c48 (patch)
treef39c52f2cfec8805bbcb76d07db83845a4b99ddc /t/run.lua
parentf40cdf7b70a4e1b3bebbc09fb1d15826a4ca924e (diff)
downloadlite-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.lua1
1 files changed, 0 insertions, 1 deletions
diff --git a/t/run.lua b/t/run.lua
index 32b2266..a7af537 100644
--- a/t/run.lua
+++ b/t/run.lua
@@ -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