From 27d98a866079078d8f9a0fec0d5e8717a5821eb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arturo=20Filast=C3=B2?= Date: Tue, 28 Jan 2020 11:05:09 +0100 Subject: [PATCH] Small cosmetic fix --- internal/log/handlers/cli/results.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/internal/log/handlers/cli/results.go b/internal/log/handlers/cli/results.go index dfef5c7..b6194dc 100644 --- a/internal/log/handlers/cli/results.go +++ b/internal/log/handlers/cli/results.go @@ -123,7 +123,7 @@ func logResultItem(w io.Writer, f log.Fields) error { if index == totalCount-1 { if isDone == true { - fmt.Fprintf(w, "└┬──────────────┬──────────────┬──────────────────┬┘\n") + fmt.Fprintf(w, "└┬──────────────┬─────────────┬───────────────────┬┘\n") } else { // We want the incomplete section to not have a footer fmt.Fprintf(w, "└──────────────────────────────────────────────────┘\n") @@ -144,12 +144,12 @@ func logResultSummary(w io.Writer, f log.Fields) error { fmt.Fprintf(w, " ooni run websites\n") return nil } - // └┬──────────────┬──────────────┬──────────────┬ + // └┬──────────────┬─────────────┬───────────────┬ fmt.Fprintf(w, " │ %s │ %s │ %s │\n", utils.RightPad(fmt.Sprintf("%d tests", tests), 12), - utils.RightPad(fmt.Sprintf("%d nets", networks), 12), + utils.RightPad(fmt.Sprintf("%d nets", networks), 11), utils.RightPad(fmt.Sprintf("⬆ %s ⬇ %s", formatSize(dataUp), formatSize(dataDown)), 16)) - fmt.Fprintf(w, " └──────────────┴──────────────┴──────────────────┘\n") + fmt.Fprintf(w, " └──────────────┴─────────────┴───────────────────┘\n") return nil }