Removed deprecation in showcase project.

This commit is contained in:
Oliver Gierke
2014-07-22 06:27:42 +02:00
parent edfb9a25d9
commit 58ac158e39

View File

@@ -55,7 +55,7 @@ public class CustomerRepositoryIntegrationTest extends AbstractShowcaseTest {
Page<Customer> customers = repository.findByLastname("Matthews", new PageRequest(0, 2));
assertThat(customers.getContent().size(), is(2));
assertFalse(customers.hasPreviousPage());
assertFalse(customers.hasPrevious());
}
@Test