summaryrefslogtreecommitdiff
path: root/lua/99/test
diff options
context:
space:
mode:
Diffstat (limited to 'lua/99/test')
-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