Skip to content

Commit 0f51a3a

Browse files
committed
Update explicit docker images to 4.4.
1 parent d898bc4 commit 0f51a3a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/test/java/org/springframework/data/neo4j/documentation/spring_boot/ReactiveTemplateExampleTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
// tag::faq.template-reactive-pt2[]
4949
class ReactiveTemplateExampleTest {
5050

51-
@Container private static Neo4jContainer<?> neo4jContainer = new Neo4jContainer<>("neo4j:4.0");
51+
@Container private static Neo4jContainer<?> neo4jContainer = new Neo4jContainer<>("neo4j:4.4");
5252

5353
@DynamicPropertySource
5454
static void neo4jProperties(DynamicPropertyRegistry registry) {

src/test/java/org/springframework/data/neo4j/integration/multiple_ctx_imperative/MultipleContextsIT.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,11 @@
5353
public class MultipleContextsIT {
5454

5555
@Container
56-
private static Neo4jContainer container1 = new Neo4jContainer<>("neo4j:4.0")
56+
private static Neo4jContainer container1 = new Neo4jContainer<>("neo4j:4.4")
5757
.withAdminPassword("secret1");
5858

5959
@Container
60-
private static Neo4jContainer container2 = new Neo4jContainer<>("neo4j:4.0")
60+
private static Neo4jContainer container2 = new Neo4jContainer<>("neo4j:4.4")
6161
.withAdminPassword("secret2");
6262

6363
@DynamicPropertySource

0 commit comments

Comments
 (0)