aboutsummaryrefslogtreecommitdiffstats
path: root/tests/helpers/lua/test_helpers.lua
diff options
context:
space:
mode:
authorWilliam Boman <william@redwill.se>2023-03-12 09:25:41 +0100
committerGitHub <noreply@github.com>2023-03-12 09:25:41 +0100
commita81503f0019942111fe464209237f8b4e85f4687 (patch)
tree390147103c990591dc0131c2fc44ca53b4a1b699 /tests/helpers/lua/test_helpers.lua
parentfeat: add standardrb (#167) (diff)
downloadmason-lspconfig-a81503f0019942111fe464209237f8b4e85f4687.tar
mason-lspconfig-a81503f0019942111fe464209237f8b4e85f4687.tar.gz
mason-lspconfig-a81503f0019942111fe464209237f8b4e85f4687.tar.bz2
mason-lspconfig-a81503f0019942111fe464209237f8b4e85f4687.tar.lz
mason-lspconfig-a81503f0019942111fe464209237f8b4e85f4687.tar.xz
mason-lspconfig-a81503f0019942111fe464209237f8b4e85f4687.tar.zst
mason-lspconfig-a81503f0019942111fe464209237f8b4e85f4687.zip
style: enforce import order (#169)
* chore(workflows): update dependencies * style: enforce import order
Diffstat (limited to 'tests/helpers/lua/test_helpers.lua')
-rw-r--r--tests/helpers/lua/test_helpers.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/helpers/lua/test_helpers.lua b/tests/helpers/lua/test_helpers.lua
index 1880c39..5e38639 100644
--- a/tests/helpers/lua/test_helpers.lua
+++ b/tests/helpers/lua/test_helpers.lua
@@ -1,10 +1,10 @@
---@diagnostic disable: lowercase-global
-local util = require "luassert.util"
local spy = require "luassert.spy"
+local util = require "luassert.util"
-local a = require "mason-core.async"
-local InstallHandle = require "mason-core.installer.handle"
local InstallContext = require "mason-core.installer.context"
+local InstallHandle = require "mason-core.installer.handle"
+local a = require "mason-core.async"
local registry = require "mason-registry"
function async_test(suspend_fn)