We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8ec3a6 commit b891555Copy full SHA for b891555
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)
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