We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 627a1cc commit ab848cfCopy full SHA for ab848cf
lua/neotest-go/output.lua
@@ -58,9 +58,9 @@ function M.marshal_gotest_output(lines)
58
-- if a new file and line number is present in the current line, use this info from now on
59
-- begin collection log data with everything after the file:linenumber
60
local new_test_file, new_line_number = utils.get_test_file_info(parsed.Output)
61
+ testfile, linenumber = new_test_file, new_line_number
62
if new_test_file and new_line_number then
- testfile = new_test_file
63
- linenumber = new_line_number
+
64
if not tests[testname].file_output[testfile] then
65
tests[testname].file_output[testfile] = {}
66
end
0 commit comments