From e19aea6c13330f4b8ed4ed93a54390d5f724b347 Mon Sep 17 00:00:00 2001 From: Vladimir Obucina <44030997+vladimirobucina@users.noreply.github.com> Date: Mon, 2 Dec 2024 13:30:06 +0100 Subject: [PATCH] Update test-dbi.R Set postgres password to be password. Signed-off-by: Vladimir Obucina <44030997+vladimirobucina@users.noreply.github.com> --- tests/testthat/test-dbi.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/testthat/test-dbi.R b/tests/testthat/test-dbi.R index f5a9b2e..cf9df09 100644 --- a/tests/testthat/test-dbi.R +++ b/tests/testthat/test-dbi.R @@ -15,7 +15,7 @@ specs <- list( drv = RPostgres::Postgres(), dbname = "postgres", user = "postgres", - password = Sys.getenv("POSTGRES_PW"), # Stored in GH actions + password = password # Sys.getenv("POSTGRES_PW"), # Stored in GH actions port = 5432, host = "localhost" )