diff options
author | Joseph Keenan <joseph.keenan@est.tech> | 2022-08-08 09:35:06 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2022-08-08 09:35:06 +0000 |
commit | d6424a3122c5468501311df0a50cc400d5c72784 (patch) | |
tree | 0ed1223eae97b472af2aa2fc44ae4c76f2842cc4 /cps-ri/src/test | |
parent | 520294589497042f6b4d358233b8aad5ad5ed4eb (diff) | |
parent | 6c26ba6efa40ab0a6054331dd575b50519666fd2 (diff) |
Merge "Upgrade Postgres Cps-Core"
Diffstat (limited to 'cps-ri/src/test')
-rwxr-xr-x | cps-ri/src/test/java/org/onap/cps/DatabaseTestContainer.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cps-ri/src/test/java/org/onap/cps/DatabaseTestContainer.java b/cps-ri/src/test/java/org/onap/cps/DatabaseTestContainer.java index 10f8de422d..2d2df2e629 100755 --- a/cps-ri/src/test/java/org/onap/cps/DatabaseTestContainer.java +++ b/cps-ri/src/test/java/org/onap/cps/DatabaseTestContainer.java @@ -1,6 +1,7 @@ /* * ============LICENSE_START======================================================= * Copyright (C) 2020 Pantheon.tech + * Modifications Copyright (C) 2022 Nordix Foundation. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -29,7 +30,7 @@ import org.testcontainers.containers.PostgreSQLContainer; * psql -d test -U test */ public class DatabaseTestContainer extends PostgreSQLContainer<DatabaseTestContainer> { - private static final String IMAGE_VERSION = "postgres:13.2"; + private static final String IMAGE_VERSION = "postgres:14.1"; private static DatabaseTestContainer databaseTestContainer; private DatabaseTestContainer() { |