This is an automated email from the ASF dual-hosted git repository.

markt-asf pushed a commit to branch 11.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/11.0.x by this push:
     new 17e0b1fba7 Improve formatting of version in error message.
17e0b1fba7 is described below

commit 17e0b1fba7c9094cdb1fce94b6ea9595ccee778d
Author: Mark Thomas <[email protected]>
AuthorDate: Fri May 15 18:03:02 2026 +0100

    Improve formatting of version in error message.
---
 test/org/apache/tomcat/util/net/TestPQC.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/org/apache/tomcat/util/net/TestPQC.java 
b/test/org/apache/tomcat/util/net/TestPQC.java
index ea235af499..d0d555d9c3 100644
--- a/test/org/apache/tomcat/util/net/TestPQC.java
+++ b/test/org/apache/tomcat/util/net/TestPQC.java
@@ -217,7 +217,7 @@ public class TestPQC extends TomcatBaseTest {
                     "PQC requires OpenSSL 3.5+, found version 0x" + 
Integer.toHexString(AprStatus.getOpenSSLVersion()),
                     AprStatus.getOpenSSLVersion() >= 0x30500000);
         } else if ("OpenSSL-FFM".equals(connectorName)) {
-            Assume.assumeTrue("PQC requires OpenSSL 3.5+, found version " + 
OpenSSLStatus.getVersion(),
+            Assume.assumeTrue("PQC requires OpenSSL 3.5+, found version 0x" + 
Long.toHexString(OpenSSLStatus.getVersion()),
                     OpenSSLStatus.getMajorVersion() > 3 ||
                         OpenSSLStatus.getMajorVersion() == 3 && 
OpenSSLStatus.getMinorVersion() >= 5);
         } else {


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to