From fc528559a241fa79a55d8e507023dded7532a803 Mon Sep 17 00:00:00 2001 From: Jonas Natten Date: Thu, 9 Jan 2025 09:50:25 +0100 Subject: [PATCH] Bump postgres version in tests --- .../java/no/ndla/taxonomy/service/AbstractIntegrationTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/no/ndla/taxonomy/service/AbstractIntegrationTest.java b/src/test/java/no/ndla/taxonomy/service/AbstractIntegrationTest.java index f2d093fc..294e2d0d 100644 --- a/src/test/java/no/ndla/taxonomy/service/AbstractIntegrationTest.java +++ b/src/test/java/no/ndla/taxonomy/service/AbstractIntegrationTest.java @@ -22,7 +22,7 @@ public class AbstractIntegrationTest { static final PostgreSQLContainer postgresDB; static { - postgresDB = new PostgreSQLContainer<>("postgres:13.12"); + postgresDB = new PostgreSQLContainer<>("postgres:16.3"); postgresDB.start(); }