Skip to content

Commit

Permalink
Fixed the eSigner keystore test
Browse files Browse the repository at this point in the history
ebourg committed Oct 11, 2023
1 parent 1cc5252 commit 5f07e3d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion jsign-core/src/test/java/net/jsign/KeyStoreBuilderTest.java
Original file line number Diff line number Diff line change
@@ -218,7 +218,7 @@ public void testBuildESigner() throws Exception {
assertEquals("message", "storepass parameter must specify the SSL.com username and password: <username>|<password>", e.getMessage());
}

builder.storepass("esigner_demo|esignerDemo#1");
builder.storepass("esigner_test|esignerTest#1");

try {
builder.build();
@@ -227,6 +227,7 @@ public void testBuildESigner() throws Exception {
assertEquals("message", "Authentication failed with SSL.com", e.getMessage());
}

builder.storepass("esigner_demo|esignerDemo#1");
builder.keystore("https://cs-try.ssl.com");

KeyStore keystore = builder.build();

0 comments on commit 5f07e3d

Please sign in to comment.