Skip to content

Commit

Permalink
Fixing unit test when not running all DBMSs
Browse files Browse the repository at this point in the history
  • Loading branch information
schuemie committed Jun 18, 2024
1 parent a644e84 commit 7462c6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/testthat/test-insertTable.R
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ test_that("Logging insertTable times", {
skip_if_not_installed("ParallelLogger")
log <- readLines(logFileName)
insertCount <- sum(grepl("Inserting [0-9]+ rows", log))
expect_gt(insertCount, 4)
expect_gt(insertCount, 0)
# writeLines(log)
ParallelLogger::unregisterLogger("TEST_LOGGER")
unlink(logFileName)
Expand Down

0 comments on commit 7462c6b

Please sign in to comment.