diff --git a/bom/application/pom.xml b/bom/application/pom.xml index a9ae775c7c7fe..3238100f402d7 100644 --- a/bom/application/pom.xml +++ b/bom/application/pom.xml @@ -15,7 +15,7 @@ 2.0.1 - 1.73 + 1.74 1.0.2.3 1.0.16 5.0.0 diff --git a/integration-tests/bouncycastle-jsse/src/test/java/io/quarkus/it/bouncycastle/BouncyCastleJsseTestCase.java b/integration-tests/bouncycastle-jsse/src/test/java/io/quarkus/it/bouncycastle/BouncyCastleJsseTestCase.java index 26be3a6af710a..5f0d8a1e2f415 100644 --- a/integration-tests/bouncycastle-jsse/src/test/java/io/quarkus/it/bouncycastle/BouncyCastleJsseTestCase.java +++ b/integration-tests/bouncycastle-jsse/src/test/java/io/quarkus/it/bouncycastle/BouncyCastleJsseTestCase.java @@ -82,12 +82,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) {