From 4db63f6122ba692bd694d80e01722811bf7e3e35 Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Tue, 10 Dec 2024 15:54:58 -0800 Subject: [PATCH] breaking change in beta 4: :dbname "xtdb" now required Signed-off-by: Sean Corfield --- test/next/jdbc/test_fixtures.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/next/jdbc/test_fixtures.clj b/test/next/jdbc/test_fixtures.clj index f472206..4cedac2 100644 --- a/test/next/jdbc/test_fixtures.clj +++ b/test/next/jdbc/test_fixtures.clj @@ -64,7 +64,7 @@ (def ^:private test-jtds (when (System/getenv "NEXT_JDBC_TEST_MSSQL") test-jtds-map)) -(def ^:private test-xtdb-map {:dbtype "xtdb"}) +(def ^:private test-xtdb-map {:dbtype "xtdb" :dbname "xtdb"}) (def ^:private test-xtdb (when (System/getenv "NEXT_JDBC_TEST_XTDB") test-xtdb-map))