From 8f44994f839c34e0ecd8d4477e6f00e91cda8733 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rasmus=20B=C3=A5=C3=A5th?= Date: Sat, 11 Nov 2017 19:14:14 +0100 Subject: [PATCH] slight tweak --- R/reporter-project.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/reporter-project.R b/R/reporter-project.R index f8dbd23..1230871 100644 --- a/R/reporter-project.R +++ b/R/reporter-project.R @@ -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]]