Skip to content

Commit 20a89f6

Browse files
authored
Bump spring-boot-starter-parent from 3.3.5 to 3.4.0 (#161)
1 parent ddc7cc2 commit 20a89f6

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

spring-batch-neo4j/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<groupId>org.springframework.boot</groupId>
2222
<artifactId>spring-boot-starter-parent</artifactId>
23-
<version>3.3.5</version>
23+
<version>3.4.0</version>
2424
<relativePath/>
2525
</parent>
2626

spring-batch-neo4j/src/test/java/org/springframework/batch/extensions/neo4j/builder/Neo4jItemWriterBuilderTests.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
import org.junit.jupiter.api.BeforeEach;
2020
import org.junit.jupiter.api.Test;
2121
import org.neo4j.cypherdsl.core.Cypher;
22-
import org.neo4j.cypherdsl.core.Functions;
2322
import org.neo4j.driver.Driver;
2423
import org.neo4j.driver.ExecutableQuery;
2524
import org.springframework.batch.extensions.neo4j.Neo4jItemWriter;
@@ -83,7 +82,7 @@ public void testBasicDelete() {
8382
IdDescription idDescription = mock(IdDescription.class);
8483
ExecutableQuery executableQuery = mock(ExecutableQuery.class);
8584
when(identifierAccessor.getRequiredIdentifier()).thenReturn("someId");
86-
when(idDescription.asIdExpression(anyString())).thenReturn(Functions.id(Cypher.anyNode()));
85+
when(idDescription.asIdExpression(anyString())).thenReturn(Cypher.anyNode().elementId());
8786
when(executableQuery.withParameters(any())).thenReturn(executableQuery);
8887
when(persistentEntity.getIdentifierAccessor(any())).thenReturn(identifierAccessor);
8988
when(persistentEntity.getPrimaryLabel()).thenReturn("SomeLabel");

0 commit comments

Comments
 (0)