Skip to content

Commit c70b7cf

Browse files
Resolve merge conflicts with docker
2 parents cd15262 + a4b2521 commit c70b7cf

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

tests/testthat/test-docker.R

Lines changed: 7 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", {
@@ -108,6 +111,7 @@ test_that("use_dockerfile() outputs expected messages", {
108111
}
109112
)
110113
})
114+
<<<<<<< HEAD
111115

112116
test_that("use_dockerfile() preserves case-sensitive package names", {
113117
pkg <- create_local_package()
@@ -171,3 +175,5 @@ test_that("use_dockerfile() does not copy redundant system binaries", {
171175
expect_no_match(content, "COPY --from=builder /usr/local/bin")
172176
})
173177

178+
=======
179+
>>>>>>> a4b25216f64fc4247719901af2fc331c281fbb95

0 commit comments

Comments
 (0)