Skip to content

Commit 67d7470

Browse files
committed
Keep "Downloading ..." progress out of CI logs
1 parent 0aaaa47 commit 67d7470

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/testthat/test-use-course.R

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ test_that("tidy_download() works", {
2727
gh_url <- "https://github.com/r-lib/rematch2/archive/master.zip"
2828
expected <- fs::path(tmp, "rematch2-master.zip")
2929

30-
out <- tidy_download(gh_url, destdir = tmp)
30+
capture.output(
31+
out <- tidy_download(gh_url, destdir = tmp)
32+
)
3133
expect_true(fs::file_exists(expected))
3234
expect_equivalent(out, expected)
3335
expect_identical(attr(out, "content-type"), "application/zip")

0 commit comments

Comments
 (0)