Skip to content

Commit

Permalink
feat(helper-setup): strip whitespace for undefined nunjucks vars - pa…
Browse files Browse the repository at this point in the history
…rt 5
  • Loading branch information
RasmusSkytte committed Jan 19, 2024
1 parent 88e0dd6 commit a0759aa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions testthat/helper-setup.R
Original file line number Diff line number Diff line change
Expand Up @@ -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 %}
Expand Down

0 comments on commit a0759aa

Please sign in to comment.