We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0aaaa47 commit 67d7470Copy full SHA for 67d7470
tests/testthat/test-use-course.R
@@ -27,7 +27,9 @@ test_that("tidy_download() works", {
27
gh_url <- "https://github.com/r-lib/rematch2/archive/master.zip"
28
expected <- fs::path(tmp, "rematch2-master.zip")
29
30
- out <- tidy_download(gh_url, destdir = tmp)
+ capture.output(
31
+ out <- tidy_download(gh_url, destdir = tmp)
32
+ )
33
expect_true(fs::file_exists(expected))
34
expect_equivalent(out, expected)
35
expect_identical(attr(out, "content-type"), "application/zip")
0 commit comments