Skip to content

Commit 71ff804

Browse files
committed
Adapt to Neo4j image changes
The image has been switched in 4761e13
1 parent c4a4b63 commit 71ff804

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

module/spring-boot-neo4j/src/dockerTest/java/org/springframework/boot/neo4j/docker/compose/Neo4jDockerComposeConnectionDetailsFactoryIntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class Neo4jDockerComposeConnectionDetailsFactoryIntegrationTests {
3838

3939
@DockerComposeTest(composeFile = "neo4j-compose.yaml", image = TestImage.NEO4J)
4040
void runCreatesConnectionDetailsThatCanAccessNeo4j(Neo4jConnectionDetails connectionDetails) {
41-
assertConnectionDetailsWithPassword(connectionDetails, "secret");
41+
assertConnectionDetailsWithPassword(connectionDetails, "absolutelysecret");
4242
}
4343

4444
@DockerComposeTest(composeFile = "neo4j-bitnami-compose.yaml", image = TestImage.BITNAMI_NEO4J)

module/spring-boot-neo4j/src/dockerTest/resources/org/springframework/boot/neo4j/docker/compose/neo4j-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ services:
44
ports:
55
- '7687'
66
environment:
7-
- 'NEO4J_AUTH=neo4j/secret'
7+
- 'NEO4J_AUTH=neo4j/absolutelysecret'
88

0 commit comments

Comments
 (0)