Skip to content

Commit 9557e37

Browse files
committed
test: use property name instead of database column
Signed-off-by: Artemiy Chereshnevvv <[email protected]>
1 parent ca53638 commit 9557e37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-data-jdbc/src/test/java/org/springframework/data/jdbc/repository/JdbcRepositoryIntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1562,7 +1562,7 @@ void queryByWindowKeySetTwoKeys() {
15621562

15631563
WindowIterator<DummyEntity> iter = WindowIterator.of(position -> repository.findFirst2ByOrderByIdPropAsc(position))
15641564
.startingAt(ScrollPosition.forward(
1565-
Map.of("id_Prop", 1, "pointInTime", Instant.ofEpochSecond(1000))
1565+
Map.of("idProp", 1, "pointInTime", Instant.ofEpochSecond(1000))
15661566
));
15671567

15681568
List<DummyEntity> entities = new ArrayList<>();

0 commit comments

Comments
 (0)