Skip to content

Commit

Permalink
Fix QuarkusCliTlsCommandIT truststore config val on Win (#2042)
Browse files Browse the repository at this point in the history
  • Loading branch information
michalvavrik authored Sep 24, 2024
1 parent 7e8c50d commit 82c02d3
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 82c02d3

Please sign in to comment.