Merge pull request #177 from barrett-ruth/feat/ui/remove-extra-line

remove extra line from test cases
This commit is contained in:
Barrett Ruth 2025-10-24 21:36:33 -04:00 committed by GitHub
commit 5de81e55a9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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