Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
dexamundsen committed Jan 2, 2025
1 parent 8cf9577 commit 2a61dff
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ void noPagination() {
false));

assertNotNull(countQueryResult.getSql());
assertEquals(150, countQueryResult.getCountInstances().size());
assertEquals(152, countQueryResult.getCountInstances().size());
assertNull(countQueryResult.getPageMarker());
}

Expand Down Expand Up @@ -144,7 +144,7 @@ void withPagination() {
false));

assertNotNull(countQueryResult2.getSql());
assertEquals(140, countQueryResult2.getCountInstances().size());
assertEquals(142, countQueryResult2.getCountInstances().size());
assertNull(countQueryResult2.getPageMarker());
}
}

0 comments on commit 2a61dff

Please sign in to comment.