Skip to content

Commit

Permalink
wip: report formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
shazow committed Dec 16, 2019
1 parent 3f9cc40 commit cbe88ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion report.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ type report struct {

func (r *report) Render(w io.Writer) error {
fmt.Fprintf(w, "\n* Report for %d endpoints:\n", len(r.clients))
fmt.Fprintf(w, " Completed: %d of %d requests\n", r.completed, r.requests)
fmt.Fprintf(w, " Completed: %d results with %d total requests\n", r.completed, r.requests)
fmt.Fprintf(w, " Elapsed: %s\n", r.elapsed)
fmt.Fprintf(w, " Errors: %d\n", r.errors)
fmt.Fprintf(w, " Mismatched: %d\n", r.mismatched)
Expand Down

0 comments on commit cbe88ce

Please sign in to comment.