Skip to content

Commit

Permalink
fix: use formatted string instead of actual count value
Browse files Browse the repository at this point in the history
  • Loading branch information
elmanelman committed Aug 21, 2021
1 parent b731502 commit d4d7d22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion printer/printer.go
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ func histogram(buckets []runner.Bucket) string {
" %s%s [%v]%s |%v\n",
markStr,
strings.Repeat(" ", maxMarkLen-len(markStr)),
buckets[i].Count,
countStr,
strings.Repeat(" ", maxCountLen-len(countStr)),
strings.Repeat(barChar, barLen),
))
Expand Down

0 comments on commit d4d7d22

Please sign in to comment.