aboutsummaryrefslogtreecommitdiffstats
path: root/tests/helpers/lua/luassertx.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/luassertx.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/luassertx.lua')
-rw-r--r--tests/helpers/lua/luassertx.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/helpers/lua/luassertx.lua b/tests/helpers/lua/luassertx.lua
index 55ea0d7..bc02aca 100644
--- a/tests/helpers/lua/luassertx.lua
+++ b/tests/helpers/lua/luassertx.lua
@@ -1,6 +1,6 @@
+local a = require "mason-core.async"
local assert = require "luassert"
local match = require "luassert.match"
-local a = require "mason-core.async"
local function wait_for(_, arguments)
---@type (fun()): Function to execute until it does not error.