summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorStephanie Gredell <s.raide@gmail.com>2026-02-22 13:13:51 -0800
committerStephanie Gredell <s.raide@gmail.com>2026-02-22 13:13:51 -0800
commit603067fc728061b584299c0ced8a8eb2bf40a548 (patch)
treedbdc2494d148d4e15e48ade693512dd52bf390b1 /lua
parent3e2bdb3e6663d77126bacc3019ab1e122fdea481 (diff)
downloada4-603067fc728061b584299c0ced8a8eb2bf40a548.tar.xz
a4-603067fc728061b584299c0ced8a8eb2bf40a548.zip
stylua
Diffstat (limited to 'lua')
-rw-r--r--lua/99/test/files_spec.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/lua/99/test/files_spec.lua b/lua/99/test/files_spec.lua
index b0063f2..6c27304 100644
--- a/lua/99/test/files_spec.lua
+++ b/lua/99/test/files_spec.lua
@@ -230,7 +230,7 @@ describe("files git integration", function()
return _mocks.system_output
end
- vim.uv.fs_stat = function(path)
+ vim.uv.fs_stat = function(_path)
if _mocks.stat_exists then
return { type = _mocks.stat_type }
end
@@ -353,7 +353,7 @@ describe("files git integration", function()
_mocks.system_exit = 128 -- Git failure
local orig_scandir = vim.uv.fs_scandir
- vim.uv.fs_scandir = function(dir)
+ vim.uv.fs_scandir = function(_dir)
return nil -- Empty directory
end
@@ -421,7 +421,7 @@ describe("files git integration", function()
local orig_scandir = vim.uv.fs_scandir
local fs_called = false
- vim.uv.fs_scandir = function(dir)
+ vim.uv.fs_scandir = function(_dir)
fs_called = true
return nil -- Empty
end