Skip to content

Commit

Permalink
fix #80; thanks @maelle
Browse files Browse the repository at this point in the history
  • Loading branch information
mpadge committed Sep 5, 2022
1 parent 382e92f commit fc7b8cf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: autotest
Title: Automatic Package Testing
Version: 0.0.2.196
Version: 0.0.2.197
Authors@R: c(
person("Mark", "Padgham", , "[email protected]", role = c("aut", "cre"),
comment = c(ORCID = "0000-0003-2172-5265")),
Expand Down
2 changes: 1 addition & 1 deletion codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"codeRepository": "https://github.com/ropensci-review-tools/autotest",
"issueTracker": "https://github.com/ropensci-review-tools/autotest/issues",
"license": "https://spdx.org/licenses/GPL-3.0",
"version": "0.0.2.196",
"version": "0.0.2.197",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "R",
Expand Down
4 changes: 2 additions & 2 deletions vignettes/autotest-control.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ clicking on the listed object. The different types of tests which produced
unexpected responses were:

```{r xt-operations}
table (xt$operation)
table (xt1$operation)
```

Two of those reflect the previous results regarding parameters unable to be
Expand Down Expand Up @@ -434,7 +434,7 @@ the `test_data` object called `"note"` (case-insensitive), and include a note
for each row which has `test = FALSE` explaining why those tests have been
switched off. Lines in your test directory should look something like this:

```{r testthat-demo-testdata, collapse = TRUE, echo = TRUE, eval = FALSE}
```{r testthat-demo-testdata, collapse = TRUE, message = FALSE, echo = TRUE, eval = FALSE}
library (testthat) # as called in your test suite
# For example, to switch off vector-to-list-column tests:
test_data <- autotest_types (notest = "vector_to_list_col")
Expand Down

0 comments on commit fc7b8cf

Please sign in to comment.