From 94b40d706ecef3bf8f12302f761649ce69fb9eeb Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Thu, 18 Sep 2025 23:53:16 -0400 Subject: [PATCH] fix(ci): unused vars --- spec/test_panel_spec.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spec/test_panel_spec.lua b/spec/test_panel_spec.lua index 4d5a0a3..9a1a038 100644 --- a/spec/test_panel_spec.lua +++ b/spec/test_panel_spec.lua @@ -259,7 +259,7 @@ describe('cp test panel', function() cp.handle_command({ fargs = { 'test' } }) local found_tab_buffer = false - for buf_id, lines in pairs(tab_content) do + for _buf_id, lines in pairs(tab_content) do if lines and #lines > 0 then local content = table.concat(lines, '\n') if content:match('> 1%..*%[ok:true%]') then @@ -283,7 +283,7 @@ describe('cp test panel', function() cp.handle_command({ fargs = { 'test' } }) local found_input = false - for buf_id, lines in pairs(tab_content) do + for _buf_id, lines in pairs(tab_content) do if lines and #lines > 0 then local content = table.concat(lines, '\n') if content:match('Input:') and content:match('1 2') then @@ -492,7 +492,7 @@ describe('cp test panel', function() cp.handle_command({ fargs = { 'test' } }) local found_time = false - for buf_id, lines in pairs(tab_content) do + for _buf_id, lines in pairs(tab_content) do if lines and #lines > 0 then local content = table.concat(lines, '\n') if content:match('%[time:%d+ms%]') then