We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c65e0d4 commit 0a48fd4Copy full SHA for 0a48fd4
tests/testthat/test_strings.R
@@ -1,8 +1,8 @@
1
library(duckdb)
2
3
test_that("Invalid unicode produces an error", {
4
- # this doesn't throw an error on previous versions of R
5
- skip_if_no_R4()
+ # this doesn't throw an error on old releases of R.
+ skip_if(R.Version()$major <= 4 && R.Version()$minor <= 2.3)
6
con <- DBI::dbConnect(duckdb::duckdb())
7
8
my_df <- structure(list(no_municipio_esc = "Est\xe2ncia", no_municipio_prova = "Est\xe2ncia"), row.names = 16L, class = "data.frame")
0 commit comments