Skip to content

Commit

Permalink
test: Fix compatibility with waldo >= 0.6.0 (#2240)
Browse files Browse the repository at this point in the history
* test: Fix compatibility with waldo >= 0.6.0

* chore: Auto-update from GitHub Actions

Run: https://github.com/cynkra/dm/actions/runs/11885168927
  • Loading branch information
krlmlr authored Nov 18, 2024
1 parent d357952 commit 4504d4d
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions man/copy_dm_to.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions man/deprecated.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions man/dm_rename.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions man/dm_select.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion tests/testthat/test-db-interface.R
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ test_that("default table repair works", {
expect_equal(calls, 0)
repair_table_names_for_db(table_names, temporary = TRUE, con)
expect_gt(calls, 0)

})

test_that("copy_dm_to() fails legibly if target schema missing for MSSQL & Postgres", {
Expand Down
2 changes: 1 addition & 1 deletion tests/testthat/test_dm_from_con.R
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ test_that("table identifiers are quoted with learn_keys = FALSE", {
map_chr(remote_name_qual)

con <- dm_get_con(dm)
expect_equal(gsub("^.*\\.", "", unname(remote_names)), unclass(DBI::dbQuoteIdentifier(con, names(dm))))
expect_equal(gsub("^.*\\.", "", DBI::SQL(unname(remote_names))), DBI::dbQuoteIdentifier(con, names(dm)))
})


Expand Down

0 comments on commit 4504d4d

Please sign in to comment.