Skip to content

Commit

Permalink
we just need two edge cases tested
Browse files Browse the repository at this point in the history
  • Loading branch information
rcjverhoef committed Sep 18, 2024
1 parent d133ff3 commit 3ad1999
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2342,7 +2342,7 @@ public void testInvalidPageSize() {
}

@ParameterizedTest
@ValueSource(ints = {21, 25, 29, 30})
@ValueSource(ints = {21, 30})
public void testPaginationForListNamespaces(int numberOfItems) {
RESTCatalogAdapter adapter = Mockito.spy(new RESTCatalogAdapter(backendCatalog));
RESTCatalog catalog =
Expand Down Expand Up @@ -2404,7 +2404,7 @@ public void testPaginationForListNamespaces(int numberOfItems) {
}

@ParameterizedTest
@ValueSource(ints = {21, 25, 29, 30})
@ValueSource(ints = {21, 30})
public void testPaginationForListTables(int numberOfItems) {
RESTCatalogAdapter adapter = Mockito.spy(new RESTCatalogAdapter(backendCatalog));
RESTCatalog catalog =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ public void closeCatalog() throws Exception {
}

@ParameterizedTest
@ValueSource(ints = {21, 25, 29, 30})
@ValueSource(ints = {21, 30})
public void testPaginationForListViews(int numberOfItems) {
RESTCatalogAdapter adapter = Mockito.spy(new RESTCatalogAdapter(backendCatalog));
RESTCatalog catalog =
Expand Down

0 comments on commit 3ad1999

Please sign in to comment.