From c55f904090e3c2fb5e64f66e3c8c11dbc5a17f09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Fri, 12 Jan 2024 01:24:15 +0100 Subject: [PATCH] chore: Bump DBI dependency to fix tests --- DESCRIPTION | 3 ++- tests/testthat/test-DBItest.R | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index ca0dbc15d..367b6eef8 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -18,7 +18,7 @@ Depends: Imports: blob (>= 1.2.0), callr, - DBI (>= 1.2.0), + DBI (>= 1.2.1), desc, hms (>= 0.5.0), lubridate, @@ -44,6 +44,7 @@ Suggests: VignetteBuilder: knitr Remotes: + r-dbi/DBI, r-dbi/RSQLite Config/autostyle/scope: line_breaks Config/autostyle/strict: false diff --git a/tests/testthat/test-DBItest.R b/tests/testthat/test-DBItest.R index 345c1af12..9604e68e5 100644 --- a/tests/testthat/test-DBItest.R +++ b/tests/testthat/test-DBItest.R @@ -13,7 +13,7 @@ tryCatch(skip = function(e) message(conditionMessage(e)), { RSQLite::SQLite(), list(dbname = tempfile("DBItest", fileext = ".sqlite")), tweaks = DBItest::tweaks( - dbitest_version = "1.8.0", + dbitest_version = "1.8.0.50", constructor_relax_args = TRUE, placeholder_pattern = c("?", "$1", "$name", ":name"), date_cast = function(x) paste0("'", x, "'"),