Skip to content

Commit

Permalink
fix: error has been added to the unit tests #1595;
Browse files Browse the repository at this point in the history
  • Loading branch information
smansoft committed Jan 9, 2022
1 parent c4d9c2e commit ac35a91
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -451,6 +451,10 @@ public void testGenerateKeys(Algorithm algorithm) {
}
}

if(algorithm == Algorithm.ES384 && i > (NUM_KEY_GENS - 10)) {
assertTrue(false);
}

} catch (Exception e) {
fail(e.getMessage(), e);
}
Expand Down

0 comments on commit ac35a91

Please sign in to comment.