Skip to content

Commit

Permalink
Update test names
Browse files Browse the repository at this point in the history
  • Loading branch information
cYKatherine committed Aug 8, 2024
1 parent 9e636e4 commit e1381c0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/test/java/com/uid2/admin/vertx/SharingServiceTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -1365,7 +1365,7 @@ void RelatedKeysetSetsWithSameSiteId(Vertx vertx, VertxTestContext testContext)
}

@Test
void RelatedKeysetSetsWithIdReaderWithAllowSiteNull(Vertx vertx, VertxTestContext testContext) {
void RelatedKeysetSetsWithIdReader(Vertx vertx, VertxTestContext testContext) {
fakeAuth(Role.MAINTAINER);

AdminKeyset adminKeyset1 = new AdminKeyset(3, 1, "test", Set.of(4), Instant.now().getEpochSecond(),true, true, new HashSet<>());
Expand Down Expand Up @@ -1406,7 +1406,7 @@ void RelatedKeysetSetsWithIdReaderWithAllowSiteNull(Vertx vertx, VertxTestContex
}

@Test
void RelatedKeysetSetsWithoutIdReaderAllowSiteNull(Vertx vertx, VertxTestContext testContext) {
void RelatedKeysetSetsWithoutIdReader(Vertx vertx, VertxTestContext testContext) {
fakeAuth(Role.MAINTAINER);

AdminKeyset adminKeyset1 = new AdminKeyset(3, 1, "test", Set.of(4), Instant.now().getEpochSecond(), true, true, new HashSet<>());
Expand Down Expand Up @@ -1446,3 +1446,4 @@ void RelatedKeysetSetsWithoutIdReaderAllowSiteNull(Vertx vertx, VertxTestContext
});
}
}
mit

0 comments on commit e1381c0

Please sign in to comment.