Skip to content

Commit

Permalink
fix: do not truncate filename in results (#273)
Browse files Browse the repository at this point in the history
close #254

Signed-off-by: Yvonnick Esnault <[email protected]>
  • Loading branch information
yesnault authored Oct 7, 2020
1 parent 941af31 commit b349e3a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions process_testsuite.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,12 @@ func (v *Venom) runTestSuite(ts *TestSuite) {
var o string
if ts.Failures > 0 || ts.Errors > 0 {
red := color.New(color.FgRed).SprintFunc()
o = fmt.Sprintf("%s %s", red("FAILURE"), rightPad(ts.Package, " ", 47))
o = fmt.Sprintf("%s %s", red("FAILURE"), ts.Package)
} else {
green := color.New(color.FgGreen).SprintFunc()
o = fmt.Sprintf("%s %s", green("SUCCESS"), rightPad(ts.Package, " ", 47))
o = fmt.Sprintf("%s %s", green("SUCCESS"), ts.Package)
}
o += fmt.Sprintf("%s", elapsed)
o += fmt.Sprintf(" %s", elapsed)
v.PrintFunc("%s\n", o)
}

Expand Down

0 comments on commit b349e3a

Please sign in to comment.