Skip to content

Commit

Permalink
Fixup the rightpad on the list command
Browse files Browse the repository at this point in the history
  • Loading branch information
hellais committed Jan 22, 2021
1 parent 9577d7e commit 0669944
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/log/handlers/cli/results.go
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ func logResultSummary(w io.Writer, f log.Fields) error {
fmt.Fprintf(w, " │ %s │ %s │ %s │\n",
utils.RightPad(fmt.Sprintf("%d tests", tests), 12),
utils.RightPad(fmt.Sprintf("%d nets", networks), 11),
utils.RightPad(fmt.Sprintf("⬆ %s ⬇ %s", formatSize(dataUp), formatSize(dataDown)), 16))
utils.RightPad(fmt.Sprintf("⬆ %s ⬇ %s", formatSize(dataUp), formatSize(dataDown)), 17))
fmt.Fprintf(w, " └──────────────┴─────────────┴───────────────────┘\n")

return nil
Expand Down

0 comments on commit 0669944

Please sign in to comment.