Skip to content

Commit

Permalink
fix failing snowflake test
Browse files Browse the repository at this point in the history
  • Loading branch information
ablack3 committed Mar 13, 2024
1 parent 7b352af commit 105b9d3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ test_that("generate_cohort_set works with write_prefix on snowflake", {

cohort_table_name <- paste0("tmp_cohort", as.integer(Sys.time()) %% 1000)

on.exit(drop_table(cdm, starts_with("tmp_cohort")), add = TRUE)
on.exit(dropTable(cdm, dplyr::everything()), add = TRUE)
on.exit(DBI::dbDisconnect(con), add = TRUE)
cdm <- generate_cohort_set(cdm, cohort_set, name = cohort_table_name, overwrite = TRUE)

Expand Down

0 comments on commit 105b9d3

Please sign in to comment.