Skip to content

Commit

Permalink
slight tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
rasmusab committed Nov 11, 2017
1 parent 2fe0e62 commit 8f44994
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/reporter-project.R
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ ProjectReporter <- R6::R6Class("ProjectReporter", inherit = testthat::ListReport
end_report <- self$end_reporter()
summary <- end_report$summary
tests <- end_report$tests
cat("Tests:", summary$tests, ", Failures:", summary$failures, ", Errors: ", summary$errors, sep = "")
cat((summary$tests - summary$failures - summary$errors), "/", summary$tests, " tests passed",sep = "")
cat("\n")
for(i in seq_along(tests)) {
test <- tests[[i]]
Expand Down

0 comments on commit 8f44994

Please sign in to comment.