File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
spring-data-jdbc/src/test/java/org/springframework/data/jdbc/testing
spring-data-r2dbc/src/test/java/org/springframework/data/r2dbc/testing Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ protected DataSource createDataSource() {
4444
4545 if (POSTGRESQL_CONTAINER == null ) {
4646
47- PostgreSQLContainer <?> container = new PostgreSQLContainer <>();
47+ PostgreSQLContainer <?> container = new PostgreSQLContainer <>("postgres:14.3" );
4848 container .start ();
4949
5050 POSTGRESQL_CONTAINER = container ;
Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ private static ExternalDatabase testContainer() {
118118
119119 try {
120120 PostgreSQLContainer container = new PostgreSQLContainer (
121- PostgreSQLContainer . IMAGE + ":" + PostgreSQLContainer . DEFAULT_TAG );
121+ "postgres:14.3" );
122122 container .start ();
123123
124124 testContainerDatabase = ProvidedDatabase .builder (container ).database (container .getDatabaseName ()).build ();
You can’t perform that action at this time.
0 commit comments