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 e705bc9 commit 53b4daa
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 53b4daa

Please sign in to comment.