Skip to content

Commit

Permalink
revert change in databaseFile
Browse files Browse the repository at this point in the history
  • Loading branch information
ablack3 committed Sep 19, 2024
1 parent 1c13de0 commit bf925bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/testthat/setup.R
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ minCellCountValue <- 5
skipCdmTests <- FALSE

if (dbms == "sqlite") {
databaseFile <- Eunomia::getDatabaseFile("GiBleed", overwrite = FALSE)
connectionDetails <- DatabaseConnector::createConnectionDetails(dbms = "sqlite", server = databaseFile)
databaseFile <- paste0(Sys.getpid(), "testEunomia.sqlite")
connectionDetails <- Eunomia::getEunomiaConnectionDetails(databaseFile = databaseFile)
withr::defer(
{
unlink(databaseFile, recursive = TRUE, force = TRUE)
Expand Down

0 comments on commit bf925bd

Please sign in to comment.