Skip to content

Commit 4541515

Browse files
Update tests/testthat/test-docker.R
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 80d33f8 commit 4541515

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

tests/testthat/test-docker.R

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@ test_that("use_dockerfile() creates Dockerfile", {
55
expect_no_error(use_dockerfile(open = FALSE, use_git = TRUE))
66
expect_true(file_exists(proj_path("Dockerfile")))
77
content <- readLines(proj_path("Dockerfile"))
8-
expect_match(paste(content, collapse = "\n"), "Multi-stage build for R package")
8+
expect_match(
9+
paste(content, collapse = "\n"),
10+
"Multi-stage build for R package"
11+
)
912
})
1013

1114
test_that("use_dockerfile() sets defaults from DESCRIPTION", {

0 commit comments

Comments
 (0)