Skip to content

Commit 8f44994

Browse files
committed
slight tweak
1 parent 2fe0e62 commit 8f44994

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

R/reporter-project.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ ProjectReporter <- R6::R6Class("ProjectReporter", inherit = testthat::ListReport
6262
end_report <- self$end_reporter()
6363
summary <- end_report$summary
6464
tests <- end_report$tests
65-
cat("Tests:", summary$tests, ", Failures:", summary$failures, ", Errors: ", summary$errors, sep = "")
65+
cat((summary$tests - summary$failures - summary$errors), "/", summary$tests, " tests passed",sep = "")
6666
cat("\n")
6767
for(i in seq_along(tests)) {
6868
test <- tests[[i]]

0 commit comments

Comments
 (0)