Skip to content

Commit a327ce3

Browse files
committed
fix merge conflict?
2 parents 512d707 + 88ec630 commit a327ce3

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

tests/testthat/_snaps/cran-compliance.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717
# A tibble: 9 x 2
1818
crate version
1919
<chr> <chr>
20-
1 extendr-api *.*.*
21-
2 extendr-macros *.*.*
22-
3 libR-sys *.*.*
23-
4 once_cell *.*.*
24-
5 paste *.*.*
25-
6 proc-macro2 *.*.*
26-
7 quote *.*.*
20+
1 extendr-api *.*.*
21+
2 extendr-macros *.*.*
22+
3 libR-sys *.*.*
23+
4 once_cell *.*.*
24+
5 paste *.*.*
25+
6 proc-macro2 *.*.*
26+
7 quote *.*.*
2727
8 syn *.*.*
28-
9 unicode-ident *.*.*
28+
9 unicode-ident *.*.*
2929

tests/testthat/helper.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ skip_if_opted_out_of_dev_tests <- function() {
121121
mask_any_version <- function(snapshot_lines) {
122122
stringi::stri_replace_all_regex(
123123
snapshot_lines,
124-
"\\d+\\.\\d+\\.\\d+(?:\\.\\d+)?",
124+
"\\d+\\.\\d+\\.\\d+(?:\\.\\d+)?\\s*",
125125
"*.*.*"
126126
)
127127
}

tests/testthat/test-cran-compliance.R

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ test_that("vendor_pkgs() vendors dependencies", {
44
path <- local_package("testpkg")
55

66
expect_error(vendor_pkgs(path))
7+
78
# capture setup messages
89
withr::local_options(usethis.quiet = FALSE)
910
use_extendr(path, quiet = TRUE)

0 commit comments

Comments
 (0)