Skip to content

Commit 3571db7

Browse files
committed
Adopt tests to PagingAndSortingRepository split.
Closes #2258
1 parent e3fc66e commit 3571db7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/test/java/org/springframework/data/redis/repository/RedisRepositoryIntegrationTestBase.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,8 @@ void shouldProperlyReadNestedImmutableObject() {
475475
}
476476

477477
public static interface PersonRepository
478-
extends PagingAndSortingRepository<Person, String>, QueryByExampleExecutor<Person> {
478+
extends PagingAndSortingRepository<Person, String>, CrudRepository<Person, String>,
479+
QueryByExampleExecutor<Person> {
479480

480481
List<Person> findByFirstname(String firstname);
481482

0 commit comments

Comments
 (0)