fix(ci): unused variables

This commit is contained in:
Barrett Ruth 2025-09-21 11:36:19 -04:00
parent 1b8365265d
commit 2c994a8bdc

View file

@ -40,7 +40,7 @@ describe('cp.picker', function()
describe('get_contests_for_platform', function()
it('returns empty list when scraper fails', function()
vim.system = function(cmd, opts)
vim.system = function()
return {
wait = function()
return { code = 1, stderr = 'test error' }
@ -54,7 +54,7 @@ describe('cp.picker', function()
end)
it('returns empty list when JSON is invalid', function()
vim.system = function(cmd, opts)
vim.system = function()
return {
wait = function()
return { code = 0, stdout = 'invalid json' }
@ -68,7 +68,7 @@ describe('cp.picker', function()
end)
it('returns contest list when scraper succeeds', function()
vim.system = function(cmd, opts)
vim.system = function()
return {
wait = function()
return {