Skip to content

Commit

Permalink
Fix spurious MariaDB test warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
krlmlr committed Oct 9, 2023
1 parent 0ccd833 commit 1f30829
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/testthat/test-learn.R
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ test_that("Standard learning from MSSQL (schema 'dbo') or Postgres (schema 'publ
})


test_that("Learning from specific schema on MSSQL or Postgres works?", {
test_that("Learning from specific schema works?", {
skip_if_schema_not_supported()

# produces a randomized schema name with a length of 4-10 characters
Expand All @@ -92,7 +92,7 @@ test_that("Learning from specific schema on MSSQL or Postgres works?", {
)
order_of_deletion <- c("iris_3", "iris_2", "iris_1")
remote_tbl_names <- set_names(
paste0(schema_name_q, ".\"", order_of_deletion, "\""),
paste0(schema_name_q, ".", DBI::dbQuoteIdentifier(con_db, order_of_deletion)),
order_of_deletion
)

Expand Down

0 comments on commit 1f30829

Please sign in to comment.