From deaddc55aaa0c5e683d5ae8753da7cb262bf39a1 Mon Sep 17 00:00:00 2001 From: Schultheis Date: Fri, 3 Aug 2018 11:21:10 +0200 Subject: [PATCH] print instead of message --- tests/testthat/test-download.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/testthat/test-download.R b/tests/testthat/test-download.R index 34587b5..8810ed1 100644 --- a/tests/testthat/test-download.R +++ b/tests/testthat/test-download.R @@ -6,7 +6,7 @@ test_that("ggplot is downloadable", { height <- 20 file <- tempfile(fileext = ".zip") filename <- "plot" - message(file) + print(file) expect_false(file.exists(file)) expect_silent(download(file = file, filename = filename, plot = plot, width = width, height = height))