From ff4f8337f8c161355e9e725d07e838d3023c5f8c Mon Sep 17 00:00:00 2001 From: Adam Black Date: Thu, 19 Aug 2021 16:28:21 -0400 Subject: [PATCH] Fix bug in setup test script. --- tests/setup.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/setup.R b/tests/setup.R index 167a461..762a4ee 100644 --- a/tests/setup.R +++ b/tests/setup.R @@ -3,6 +3,6 @@ driverPath <- file.path(Sys.getenv("HOME"), "drivers") if(!dir.exists(driverPath)) dir.create(driverPath) -if(!Sys.getenv("LOCAL_TEST" == "TRUE")) { +if(Sys.getenv("LOCAL_TEST") != "TRUE") { DatabaseConnector::downloadJdbcDrivers("all", pathToDriver = driverPath) }