Skip to content

Commit

Permalink
Fix quarkus-integration-test-bouncycastle-fips-jsse test
Browse files Browse the repository at this point in the history
  • Loading branch information
sberyozkin authored and franz1981 committed Jun 19, 2023
1 parent 4b649c4 commit 13b3b79
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,12 +108,12 @@ public void run() throws Throwable {
while ((line = reader.readLine()) != null) {
sbLog.append(line).append("/r/n");
if (!checkServerPassed && line.contains("ProvTlsServer")
&& (line.contains("Server selected protocol version: TLSv1.2")
|| line.contains("Server selected protocol version: TLSv1.3"))) {
&& (line.contains("selected protocol version: TLSv1.2")
|| line.contains("selected protocol version: TLSv1.3"))) {
checkServerPassed = true;
} else if (!checkClientPassed && line.contains("ProvTlsClient")
&& (line.contains("Client notified of selected protocol version: TLSv1.2")
|| line.contains("Client notified of selected protocol version: TLSv1.3"))) {
&& (line.contains("notified of selected protocol version: TLSv1.2")
|| line.contains("notified of selected protocol version: TLSv1.3"))) {
checkClientPassed = true;
}
if (checkClientPassed && checkServerPassed) {
Expand Down

0 comments on commit 13b3b79

Please sign in to comment.