Skip to content

Commit

Permalink
fix: assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
JordenReuter committed Sep 27, 2024
1 parent 91d892b commit 5a414d0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ void searchBookmarksByCriteria() {
.then()
.statusCode(OK.getStatusCode())
.extract().as(BookmarkPageResultDTO.class);
assertThat(data.getStream().size()).isZero();
assertThat(data.getStream().isEmpty()).isTrue();
bookmarkSearchCriteriaDTO.setScope("PRIVATE");

data = given()
Expand Down

0 comments on commit 5a414d0

Please sign in to comment.