Skip to content

Commit 758ddf2

Browse files
committed
Fixed tests
1 parent e8740b5 commit 758ddf2

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/test/java/com/uid2/operator/UIDOperatorVerticleTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -772,6 +772,7 @@ void keyLatestHideRefreshKey(Vertx vertx, VertxTestContext testContext) {
772772
new KeysetKey(102, "key102".getBytes(), now, now, now.plusSeconds(10), RefreshKeysetId),
773773
new KeysetKey(103, "key103".getBytes(), now, now, now.plusSeconds(10), 10),
774774
};
775+
MultipleKeysetsTests test = new MultipleKeysetsTests(Arrays.asList(keysets), Arrays.asList(encryptionKeys));
775776
Arrays.sort(encryptionKeys, Comparator.comparing(KeysetKey::getId));
776777

777778
send(vertx, "v2/key/latest", null, 200, respJson -> {
@@ -2341,7 +2342,7 @@ void identityMapBatchEmailHashes(Vertx vertx, VertxTestContext testContext) {
23412342
}
23422343

23432344
send(vertx, "v2/identity/map", req, 200, json -> {
2344-
checkIdentityMapResponse(json, email_hashes);
2345+
checkIdentityMapResponse(json, emailHashes);
23452346
testContext.completeNow();
23462347
});
23472348
}

0 commit comments

Comments
 (0)