From 2fe0e62f6bb561786df0721ffe416fd0d783936f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rasmus=20B=C3=A5=C3=A5th?= Date: Sat, 11 Nov 2017 16:55:04 +0100 Subject: [PATCH] removed stray code. --- R/reporter-project.R | 2 -- 1 file changed, 2 deletions(-) diff --git a/R/reporter-project.R b/R/reporter-project.R index f38b15a..f8dbd23 100644 --- a/R/reporter-project.R +++ b/R/reporter-project.R @@ -61,8 +61,6 @@ ProjectReporter <- R6::R6Class("ProjectReporter", inherit = testthat::ListReport print = function() { end_report <- self$end_reporter() summary <- end_report$summary - tests <- do.call(rbind, lapply(end_report$tests, data.frame, stringsAsFactors=FALSE)) - tests <- tests[ ! tests$success, ] tests <- end_report$tests cat("Tests:", summary$tests, ", Failures:", summary$failures, ", Errors: ", summary$errors, sep = "") cat("\n")