DATAREDIS-425 - Adapted to changes in Spring Data KeyValue APIs.

Default query initialization changed to new, so we can delete some code here. 

Original Pull Request: #156
This commit is contained in:
Christoph Strobl
2016-03-07 15:09:14 +01:00
parent 2cc30553a8
commit 9eb309c495
3 changed files with 22 additions and 76 deletions

View File

@@ -115,6 +115,9 @@ public class RedisRepositoryIntegrationTests {
assertThat(repo.findByFirstname("rand").size(), is(1));
assertThat(repo.findByFirstname("rand"), hasItem(rand));
assertThat(repo.findByFirstname("egwene").size(), is(1));
assertThat(repo.findByFirstname("egwene"), hasItem(egwene));
assertThat(repo.findByLastname("al'thor"), hasItem(rand));
}