Skip to content

Commit

Permalink
fix tests (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffreyhanson committed Nov 1, 2023
1 parent 5b90380 commit ce28c41
Show file tree
Hide file tree
Showing 25 changed files with 38 additions and 35 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: wdpar
Type: Package
Version: 1.3.7
Version: 1.3.7.1
Title: Interface to the World Database on Protected Areas
Description: Fetch and clean data from the World Database on Protected
Areas (WDPA) and the World Database on Other Effective Area-Based
Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# wdpar 1.3.7.1

- Update tests to accommodate corrupted data from Protected Planet.

# wdpar 1.3.7

- CRAN release.
Expand Down
2 changes: 1 addition & 1 deletion docs/404.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/CONTRIBUTING.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/LICENSE-text.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/articles/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docs/articles/wdpar.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified docs/articles/wdpar_files/figure-html/unnamed-chunk-13-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/articles/wdpar_files/figure-html/unnamed-chunk-9-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/authors.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 6 additions & 3 deletions docs/news/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ pkgdown: 2.0.7
pkgdown_sha: ~
articles:
wdpar: wdpar.html
last_built: 2023-09-21T01:39Z
last_built: 2023-11-01T02:51Z

2 changes: 1 addition & 1 deletion docs/reference/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/st_erase_overlaps.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/st_repair_geometry.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/wdpa_clean.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/wdpa_dissolve.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/wdpa_fetch.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions docs/reference/wdpa_latest_version.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/wdpa_read.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions docs/reference/wdpa_url.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/wdpar.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions inst/doc/wdpar.html

Large diffs are not rendered by default.

6 changes: 1 addition & 5 deletions tests/testthat/test_wdpa_clean.R
Original file line number Diff line number Diff line change
Expand Up @@ -238,11 +238,7 @@ test_that("protected areas that massively increase in size without prepr", {
skip_on_github_workflow("macOS")
# fetch data
ids <- c(23177, 12352, 555705343, 555705341, 555721495)
countries <- c("MAR", "DZA")
x <- suppressWarnings(
lapply(countries, wdpa_fetch, wait = TRUE, check_version = FALSE)
)
x <- dplyr::bind_rows(x)
x <- wdpa_fetch("DZA", wait = TRUE, check_version = FALSE)
x <- x[x$WDPAID %in% ids, , drop = FALSE]
# clean data
y <- wdpa_clean(x, erase_overlaps = FALSE)
Expand Down

0 comments on commit ce28c41

Please sign in to comment.