diff --git a/spring-data-relational/src/test/java/org/springframework/data/relational/core/query/QueryUnitTests.java b/spring-data-relational/src/test/java/org/springframework/data/relational/core/query/QueryUnitTests.java index 97d7493b53..f912a2b5fc 100644 --- a/spring-data-relational/src/test/java/org/springframework/data/relational/core/query/QueryUnitTests.java +++ b/spring-data-relational/src/test/java/org/springframework/data/relational/core/query/QueryUnitTests.java @@ -28,10 +28,10 @@ * @author Jens Schauder * @author Mark Paluch */ -public class QueryUnitTests { +class QueryUnitTests { @Test // DATAJDBC-614 - public void withCombinesSortAndPaging() { + void withCombinesSortAndPaging() { Query query = Query.empty() // .sort(Sort.by("alpha")) // @@ -43,7 +43,7 @@ public void withCombinesSortAndPaging() { } @Test // DATAJDBC-614 - public void withCombinesEmptySortAndPaging() { + void withCombinesEmptySortAndPaging() { Query query = Query.empty() // .with(PageRequest.of(2, 20, Sort.by("beta"))); @@ -54,7 +54,7 @@ public void withCombinesEmptySortAndPaging() { } @Test // DATAJDBC-614 - public void withCombinesSortAndUnsortedPaging() { + void withCombinesSortAndUnsortedPaging() { Query query = Query.empty() // .sort(Sort.by("alpha")) // @@ -66,7 +66,7 @@ public void withCombinesSortAndUnsortedPaging() { } @Test // GH-1939 - public void withCombinesUnpagedWithSort() { + void withCombinesUnpagedWithSort() { Query query = Query.empty() // .with(Pageable.unpaged(Sort.by("beta")));