Skip to content

Commit

Permalink
Azure Key Vault tests update
Browse files Browse the repository at this point in the history
  • Loading branch information
ebourg committed Apr 3, 2024
1 parent c01b337 commit 620616e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jsign-core/src/test/java/net/jsign/SignerHelperTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ public void testAzureKeyVault() throws Exception {

SignerHelper helper = new SignerHelper(new StdOutConsole(1), "option")
.storetype("AZUREKEYVAULT")
.keystore("jsigntestkeyvault")
.keystore("jsignvault")
.storepass(Azure.getAccessToken())
.alias("jsign")
.alg("SHA-256");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public void testAmazonProvider() throws Exception {

@Test
public void testAzureProvider() throws Exception {
Provider provider = new SigningServiceJcaProvider(new AzureKeyVaultSigningService("jsigntestkeyvault", Azure.getAccessToken()));
Provider provider = new SigningServiceJcaProvider(new AzureKeyVaultSigningService("jsignvault", Azure.getAccessToken()));
KeyStore keystore = KeyStore.getInstance("AZUREKEYVAULT", provider);
keystore.load(null, "".toCharArray());

Expand Down

0 comments on commit 620616e

Please sign in to comment.