diff options
| author | William Boman <william@redwill.se> | 2023-03-12 09:26:02 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-12 09:26:02 +0100 |
| commit | 698cd0c4f10480991e665f31977650858d625af1 (patch) | |
| tree | 0b4b93cd3ff4b31d1be2e1b47a7d37927150df2f /tests/mason-core/fetch_spec.lua | |
| parent | feat: add github registry source capabilities (#1091) (diff) | |
| download | mason-698cd0c4f10480991e665f31977650858d625af1.tar mason-698cd0c4f10480991e665f31977650858d625af1.tar.gz mason-698cd0c4f10480991e665f31977650858d625af1.tar.bz2 mason-698cd0c4f10480991e665f31977650858d625af1.tar.lz mason-698cd0c4f10480991e665f31977650858d625af1.tar.xz mason-698cd0c4f10480991e665f31977650858d625af1.tar.zst mason-698cd0c4f10480991e665f31977650858d625af1.zip | |
style: enforce import order (#1092)
* chore(workflows): update dependencies
* style: enforce import order
Diffstat (limited to 'tests/mason-core/fetch_spec.lua')
| -rw-r--r-- | tests/mason-core/fetch_spec.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/mason-core/fetch_spec.lua b/tests/mason-core/fetch_spec.lua index a14842f9..7a25a693 100644 --- a/tests/mason-core/fetch_spec.lua +++ b/tests/mason-core/fetch_spec.lua @@ -1,8 +1,8 @@ -local stub = require "luassert.stub" -local match = require "luassert.match" +local Result = require "mason-core.result" local fetch = require "mason-core.fetch" +local match = require "luassert.match" local spawn = require "mason-core.spawn" -local Result = require "mason-core.result" +local stub = require "luassert.stub" describe("fetch", function() it( |
