Skip to content

Commit

Permalink
Merge pull request #730 from jtnord/adapt-test-to-credentials-changes
Browse files Browse the repository at this point in the history
use valid password for test code
  • Loading branch information
jtnord authored Jul 11, 2024
2 parents 89fa170 + ddcd2cd commit c9522a9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ public static void setup() throws Exception {
folderStore.addCredentials(Domain.global(), c);

File crt = new File(CredentialWrapperStepTest.class.getResource("dummy.p12").toURI());
CertificateCredentialsImpl certCred = new CertificateCredentialsImpl(CredentialsScope.GLOBAL, "certCred1", "sample", "test",
CertificateCredentialsImpl certCred = new CertificateCredentialsImpl(CredentialsScope.GLOBAL, "certCred1", "sample", "password",
new CertificateCredentialsImpl.UploadedKeyStoreSource(new FileParameterValue.FileItemImpl(crt), null));
store.addCredentials(Domain.global(), certCred);
}
Expand Down

0 comments on commit c9522a9

Please sign in to comment.