Skip to content

Commit

Permalink
Fix helpers
Browse files Browse the repository at this point in the history
  • Loading branch information
amoeba committed Dec 11, 2024
1 parent 42ba4cd commit e99326a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions r/tests/testthat/helper-skip.R
Original file line number Diff line number Diff line change
Expand Up @@ -133,13 +133,13 @@ if_arrow_version_less_than <- function(version) {
}

skip_if_arrow_version_less_than <- function(version, msg) {
if (if_version(version, `<`)) {
if (if_arrow_version(version, `<`)) {
skip(msg)
}
}

skip_if_arrow_version_equals <- function(version, msg) {
if (if_version(version, `==`)) {
if (if_arrow_version(version, `==`)) {
skip(msg)
}
}
Expand Down

0 comments on commit e99326a

Please sign in to comment.