From a0759aafeed039beb35ecae7828652c65cd1b58f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rasmus=20Skytte=20Randl=C3=B8v?= Date: Fri, 19 Jan 2024 12:12:29 +0100 Subject: [PATCH] feat(helper-setup): strip whitespace for undefined nunjucks vars - part 5 --- testthat/helper-setup.R | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/testthat/helper-setup.R b/testthat/helper-setup.R index 32c3b3f5..03cdefd0 100644 --- a/testthat/helper-setup.R +++ b/testthat/helper-setup.R @@ -16,22 +16,22 @@ get_test_conns <- function() { # Define list of connections to check if (running_locally) { - # All lists follows the pattern of: - # Backend string = package::function - # Define our local connection backends conn_list <- list( + # Backend string = package::function {{ conn_list }} ) # Define our local connection arguments conn_args <- list( + # Backend string = package::function {{ conn_args }} ) # Define post connection commands to run {% if conn_post_connect %} conn_post_connect <- list( + # Backend string = package::function {{ conn_post_connect }} ) {% endif %}