Skip to content

Commit 5e3a3ae

Browse files
committed
fix: adapt the code to ORCID ID checking in R devel
1 parent 8882352 commit 5e3a3ae

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

tests/testthat/_snaps/object-package.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@
1212
[1] "H W \\email{[email protected]} [contributor]"
1313
Code
1414
# ORCID comments
15-
person_desc(comment = c(ORCID = "1234"))
15+
person_desc(comment = c(ORCID = "0000-0003-4757-117X"))
1616
Output
17-
[1] "H W \\email{[email protected]} (\\href{https://orcid.org/1234}{ORCID})"
17+
[1] "H W \\email{[email protected]} (\\href{https://orcid.org/0000-0003-4757-117X}{ORCID})"
1818
Code
19-
person_desc(comment = c(ORCID = "https://orcid.org/1234"))
19+
person_desc(comment = c(ORCID = "https://orcid.org/0000-0003-4757-117X"))
2020
Output
21-
[1] "H W \\email{[email protected]} (\\href{https://orcid.org/1234}{ORCID})"
21+
[1] "H W \\email{[email protected]} (\\href{https://orcid.org/0000-0003-4757-117X}{ORCID})"
2222
Code
23-
person_desc(comment = c(ORCID = "1234", "extra"))
23+
person_desc(comment = c(ORCID = "0000-0003-4757-117X", "extra"))
2424
Output
25-
[1] "H W \\email{[email protected]} (\\href{https://orcid.org/1234}{ORCID}) (extra)"
25+
[1] "H W \\email{[email protected]} (\\href{https://orcid.org/0000-0003-4757-117X}{ORCID}) (extra)"
2626
Code
2727
# ROR comments
2828
person_desc(comment = c(ROR = "03wc8by49"))

tests/testthat/test-object-package.R

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ test_that("person turned into meaningful text", {
1212
person_desc(role = "ctb")
1313

1414
"ORCID comments"
15-
person_desc(comment = c("ORCID" = "1234"))
16-
person_desc(comment = c("ORCID" = "https://orcid.org/1234"))
17-
person_desc(comment = c("ORCID" = "1234", "extra"))
15+
person_desc(comment = c("ORCID" = "0000-0003-4757-117X"))
16+
person_desc(comment = c("ORCID" = "https://orcid.org/0000-0003-4757-117X"))
17+
person_desc(comment = c("ORCID" = "0000-0003-4757-117X", "extra"))
1818

1919
"ROR comments"
2020
person_desc(comment = c("ROR" = "03wc8by49"))

0 commit comments

Comments
 (0)