Skip to content

Commit

Permalink
observer: Removed extra space in summary message
Browse files Browse the repository at this point in the history
  • Loading branch information
magnusbaeck committed Jun 30, 2020
1 parent e51eb08 commit 22f7b21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion observer/summary.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func RunSummaryObserver(prop observer.Property) {
}
// Display result on stdout
case TestExecutionEnd:
fmt.Printf("\nSummary: %s All tests : %d/%d\n", getIconStatus(globalSummary.NumberNotOk), globalSummary.NumberOk, globalSummary.NumberOk+globalSummary.NumberNotOk)
fmt.Printf("\nSummary: %s All tests: %d/%d\n", getIconStatus(globalSummary.NumberNotOk), globalSummary.NumberOk, globalSummary.NumberOk+globalSummary.NumberNotOk)

// Ordering by keys name
keys := make([]string, len(results))
Expand Down

0 comments on commit 22f7b21

Please sign in to comment.