From 06699445a7d4d625bfde58d6aa661f4e85162d5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arturo=20Filast=C3=B2?= Date: Fri, 22 Jan 2021 12:46:57 +0100 Subject: [PATCH] Fixup the rightpad on the list command --- internal/log/handlers/cli/results.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/log/handlers/cli/results.go b/internal/log/handlers/cli/results.go index 97ea165..87b5a47 100644 --- a/internal/log/handlers/cli/results.go +++ b/internal/log/handlers/cli/results.go @@ -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