fix bug in test

This commit is contained in:
Adam Black 2021-08-19 08:23:41 -04:00
parent 7ecd0a5410
commit cea09cf273
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ connectionDetails <- createConnectionDetails(
} }
test_that("Database can be connected to", { test_that("Database can be connected to", {
expect_error(con <- connect(connectionDetails), NULL) expect_error(con <- connect(connectionDetails), NA)
disconnect(con) disconnect(con)
}) })