Skip to content

Commit

Permalink
Merge pull request #127 from MichaelChirico/patch-1
Browse files Browse the repository at this point in the history
drop plyr::empty usage
  • Loading branch information
tonyfischetti committed Nov 14, 2023
2 parents 8b04b89 + 12c2ff0 commit 1636b6d
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 14 deletions.
1 change: 0 additions & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ Suggests:
magrittr,
rmarkdown,
tibble,
plyr,
covr
VignetteBuilder: knitr
RoxygenNote: 7.2.3
Expand Down
12 changes: 0 additions & 12 deletions codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,18 +97,6 @@
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=tibble"
},
{
"@type": "SoftwareApplication",
"identifier": "plyr",
"name": "plyr",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=plyr"
}
],
"softwareRequirements": {
Expand Down
2 changes: 1 addition & 1 deletion tests/testthat/test-assertions.R
Original file line number Diff line number Diff line change
Expand Up @@ -1610,6 +1610,6 @@ test_that("handle predicates applied to the whole data, and not to subframe", {
head( n = 0)

expect_silent({
assert(data = a_tibble, predicate = plyr::empty, dplyr::everything())
assert(data = a_tibble, predicate = function(x) nrow(x) == 0L, dplyr::everything())
})
})

0 comments on commit 1636b6d

Please sign in to comment.