Skip to content

Commit

Permalink
fix(test): correct size
Browse files Browse the repository at this point in the history
  • Loading branch information
drazen04 committed Nov 11, 2024
1 parent d71643e commit 905f7c0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ void deleteGroup() throws Exception {
assertEquals(HttpStatus.SC_OK, soapResponse.getStatusLine().getStatusCode());

var groups = searchGroups(account).getGroups();
assertEquals(1, groups.size());
assertEquals(2, groups.size());
assertTrue(groups.stream().noneMatch(remainingGroup -> remainingGroup.getId().equals(groupIdToDelete)));
assertTrue(groups.stream().anyMatch(remainingGroup -> remainingGroup.getId().equals(id2)));
}
Expand Down

0 comments on commit 905f7c0

Please sign in to comment.