Skip to content

Commit

Permalink
Fix QuarkusCliTlsCommandIT truststore config val on Win (quarkus-qe#2042
Browse files Browse the repository at this point in the history
)
  • Loading branch information
michalvavrik authored and fedinskiy committed Sep 25, 2024
1 parent 8d6122b commit 08b4230
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public void generateCertificate() {
.assertFileExistsStr(cmd -> cmd.getOutputLineRemainder("Key Store File:"))
.assertFileExistsStr(cmd -> cmd.getOutputLineRemainder("Trust Store File:"))
// save truststore path in application properties so that we can use it in TlsCommandTest
.addToAppProps(cmd -> TRUST_STORE_PATH + "=" + cmd.getOutputLineRemainder("Trust Store File:"))
.addToAppProps(cmd -> TRUST_STORE_PATH + "=" + addEscapes(cmd.getOutputLineRemainder("Trust Store File:")))
.assertCommandOutputContains(
"Signed Certificate generated successfully and exported into `%s-keystore.p12`".formatted(CERT_NAME))
// following properties are set by this tls command, and we want to use them TlsCommandTest as well
Expand Down

0 comments on commit 08b4230

Please sign in to comment.