Skip to content

Commit 0c83ebf

Browse files
committed
Fix quarkus-integration-test-bouncycastle-fips-jsse test
1 parent d61d177 commit 0c83ebf

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

integration-tests/bouncycastle-fips-jsse/src/test/java/io/quarkus/it/bouncycastle/BouncyCastleFipsJsseTestCase.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,12 +108,12 @@ public void run() throws Throwable {
108108
while ((line = reader.readLine()) != null) {
109109
sbLog.append(line).append("/r/n");
110110
if (!checkServerPassed && line.contains("ProvTlsServer")
111-
&& (line.contains("Server selected protocol version: TLSv1.2")
112-
|| line.contains("Server selected protocol version: TLSv1.3"))) {
111+
&& (line.contains("selected protocol version: TLSv1.2")
112+
|| line.contains("selected protocol version: TLSv1.3"))) {
113113
checkServerPassed = true;
114114
} else if (!checkClientPassed && line.contains("ProvTlsClient")
115-
&& (line.contains("Client notified of selected protocol version: TLSv1.2")
116-
|| line.contains("Client notified of selected protocol version: TLSv1.3"))) {
115+
&& (line.contains("notified of selected protocol version: TLSv1.2")
116+
|| line.contains("notified of selected protocol version: TLSv1.3"))) {
117117
checkClientPassed = true;
118118
}
119119
if (checkClientPassed && checkServerPassed) {

0 commit comments

Comments
 (0)