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

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


The following commit(s) were added to refs/heads/10.1.x by this push:
     new edae6d9e74 Better message for skipped test
edae6d9e74 is described below

commit edae6d9e7449eb2eb0592547301897acea5a9c60
Author: Mark Thomas <[email protected]>
AuthorDate: Fri Jun 19 11:04:31 2026 +0100

    Better message for skipped test
---
 test/org/apache/tomcat/util/buf/TestMessageBytesPerformance.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/org/apache/tomcat/util/buf/TestMessageBytesPerformance.java 
b/test/org/apache/tomcat/util/buf/TestMessageBytesPerformance.java
index 248652152e..b54afb3b58 100644
--- a/test/org/apache/tomcat/util/buf/TestMessageBytesPerformance.java
+++ b/test/org/apache/tomcat/util/buf/TestMessageBytesPerformance.java
@@ -57,7 +57,7 @@ public class TestMessageBytesPerformance {
     public void testConversionPerformance() {
 
         // ISO_8859_1 conversion appears to be optimised in Java 16 onwards
-        Assume.assumeFalse(JreCompat.isJre16Available());
+        Assume.assumeFalse("Test only runs for Java < 16", 
JreCompat.isJre16Available());
 
         long optimized = -1;
         long nonOptimized = -1;


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

Reply via email to