Skip to content

Commit

Permalink
change(gtest): update outputter to use standard tracing info (#727)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tieske committed Jul 26, 2023
1 parent 3def6c1 commit 0c5dcb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion busted/outputHandlers/gtest.lua
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ return function(options)
local getFileLine = function(element)
local fileline = ''
if element.trace or element.trace.short_src then
fileline = colors.cyan(element.trace.short_src) .. ' @ ' ..
fileline = colors.cyan(element.trace.short_src) .. ':' ..
colors.cyan(element.trace.currentline) .. ': '
end
return fileline
Expand Down

0 comments on commit 0c5dcb1

Please sign in to comment.