Skip to content

Commit

Permalink
Polishing.
Browse files Browse the repository at this point in the history
See #2438
Original pull request #2439
  • Loading branch information
schauder committed Feb 15, 2022
1 parent 02937e2 commit 5a4ca13
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ class FetchableFluentQueryByExampleUnitTests {
@Test // GH-2438
@SuppressWarnings({ "rawtypes", "unchecked" })
void multipleSortBy() {

Sort s1 = Sort.by(Order.by("s1"));
Sort s2 = Sort.by(Order.by("s2"));
FetchableFluentQueryByExample f = new FetchableFluentQueryByExample(Example.of(""), null, null, null, null, null);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ class FetchableFluentQueryByPredicateUnitTests {
@Test // GH-2438
@SuppressWarnings({ "rawtypes", "unchecked" })
void multipleSortBy() {

Sort s1 = Sort.by(Order.by("s1"));
Sort s2 = Sort.by(Order.by("s2"));
FetchableFluentQueryByPredicate f = new FetchableFluentQueryByPredicate(null, null, null, null, null, null, null);
Expand Down

0 comments on commit 5a4ca13

Please sign in to comment.