Skip to content

Commit

Permalink
Fix QuarkusCliTlsCommandIT truststore config val on Win (#2042)
Browse files Browse the repository at this point in the history
(cherry picked from commit 82c02d3)
  • Loading branch information
michalvavrik committed Sep 25, 2024
1 parent 4af5f3b commit a9234b6
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 a9234b6

Please sign in to comment.