From 8085acfcfcd3d0dce09f1e1b3a95062e79d352ec Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Fri, 26 Jun 2020 19:17:21 -0700 Subject: [PATCH] Fix conditional PG testing --- 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 04e9a73..5b78806 100644 --- a/test/next/jdbc/test_fixtures.clj +++ b/test/next/jdbc/test_fixtures.clj @@ -49,7 +49,7 @@ (when (System/getenv "NEXT_JDBC_TEST_MSSQL") test-jtds-map)) (def ^:private test-db-specs - (cond-> [test-derby test-h2-mem test-h2 test-hsql test-sqlite test-postgres] + (cond-> [test-derby test-h2-mem test-h2 test-hsql test-sqlite] test-postgres (conj test-postgres) test-mysql (conj test-mysql) test-mssql (conj test-mssql test-jtds)))