Skip to content

Commit

Permalink
Test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
phax committed May 15, 2023
1 parent 7c07a3e commit e258b36
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,10 @@ public void testCreateKeyStores () throws GeneralSecurityException
// Ensure each keystore type can be created
final BCCryptoHelper x = new BCCryptoHelper ();
for (final EKeyStoreType e : EKeyStoreType.values ())
{
assertNotNull (x.createNewKeyStore (e));
}
if (e.isKeyStorePathRequired ())
{
assertNotNull (x.createNewKeyStore (e));
}
}

@Test
Expand Down

0 comments on commit e258b36

Please sign in to comment.