Skip to content

Commit d888167

Browse files
committed
fix skip_if_no_quarto helper
1 parent 65c2956 commit d888167

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/testthat/helper.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
skip_if_no_quarto <- function(ver = NULL) {
33
skip_if(is.null(quarto_path()), message = "Quarto is not available")
44
skip_if(
5-
quarto_available(min = ver, error = FALSE),
5+
!quarto_available(min = ver, error = FALSE),
66
message = sprintf(
77
"Version of quarto is lower than %s: %s.",
88
ver,

0 commit comments

Comments
 (0)