Skip to content

Commit

Permalink
chore(deps): bump onecx-quarkus3-parent to 0.33.0
Browse files Browse the repository at this point in the history
  • Loading branch information
andrejpetras committed Feb 13, 2024
1 parent c2b52a2 commit 2b77415
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,8 @@ void searchMicrofrontends_shouldReturnEmptyList_whenSearchCriteriaDoesNotMatch()
Assertions.assertEquals(data.getTotalElements(), response.getTotalElements());
Assertions.assertEquals(data.getTotalPages(), response.getTotalPages());
Assertions.assertEquals(data.getNumber(), response.getNumber());
Assertions.assertNull(response.getStream());
Assertions.assertNotNull(response.getStream());
Assertions.assertEquals(0, response.getStream().size());
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,8 @@ void searchProducts_shouldReturnEmptyList_whenSearchCriteriaDoesNotMatch() {
Assertions.assertEquals(data.getTotalElements(), response.getTotalElements());
Assertions.assertEquals(data.getTotalPages(), response.getTotalPages());
Assertions.assertEquals(data.getNumber(), response.getNumber());
Assertions.assertNull(response.getStream());
Assertions.assertNotNull(response.getStream());
Assertions.assertEquals(0, response.getStream().size());
}

/**
Expand Down

0 comments on commit 2b77415

Please sign in to comment.