Skip to content

Commit

Permalink
Revert unused functions
Browse files Browse the repository at this point in the history
  • Loading branch information
cYKatherine committed Aug 6, 2024
1 parent 3234fe8 commit 2e05764
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/test/java/com/uid2/admin/vertx/SharingServiceTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,6 @@ private void compareKeysetTypeListToResult(AdminKeyset keyset, JsonArray actualL
.collect(Collectors.toSet());
assertEquals(keyset.getAllowedTypes(), actualSet);
}

private void compareKeysetsIdToResult(Set<AdminKeyset> expectedKeysets, JsonArray actualList) {
assertNotNull(actualList);
Set<AdminKeyset> actualSet = actualList.stream()
.map(s -> (AdminKeyset) s)
.collect(Collectors.toSet());
assertEquals(true, actualSet.contains(expectedKeysets));
}

private void mockSiteExistence(Integer... sites){
for(Integer site : sites) {
Expand Down

0 comments on commit 2e05764

Please sign in to comment.