fix(ui): remove extra line from test cases

This commit is contained in:
Barrett Ruth 2025-10-24 21:31:03 -04:00
parent 1d89fa0bdd
commit 8345d147cf

View file

@ -445,9 +445,6 @@ function M.run_io_view(test_index, debug)
table.insert(output_lines, line)
end
end
if idx < #test_indices then
table.insert(output_lines, '')
end
local status = run_render.get_status_info(tc)
@ -485,9 +482,6 @@ function M.run_io_view(test_index, debug)
for _, line in ipairs(vim.split(tc.input, '\n')) do
table.insert(input_lines, line)
end
if idx < #test_indices then
table.insert(input_lines, '')
end
end
if #output_lines > 0 and #verdict_lines > 0 then