diff options
| author | William Boman <william@redwill.se> | 2023-03-12 09:25:41 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-12 09:25:41 +0100 |
| commit | a81503f0019942111fe464209237f8b4e85f4687 (patch) | |
| tree | 390147103c990591dc0131c2fc44ca53b4a1b699 /tests/helpers/lua/test_helpers.lua | |
| parent | feat: add standardrb (#167) (diff) | |
| download | mason-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.lua | 6 |
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) |
