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

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-lang.git


The following commit(s) were added to refs/heads/master by this push:
     new 3cf949ad9 More precise test reporting
3cf949ad9 is described below

commit 3cf949ad902799662c506894da05d0eed88463f1
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Thu Dec 5 10:33:51 2024 -0500

    More precise test reporting
---
 .../commons/lang3/time/FastDateParser_TimeZoneStrategyTest.java    | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git 
a/src/test/java/org/apache/commons/lang3/time/FastDateParser_TimeZoneStrategyTest.java
 
b/src/test/java/org/apache/commons/lang3/time/FastDateParser_TimeZoneStrategyTest.java
index c475d96c6..0093060b9 100644
--- 
a/src/test/java/org/apache/commons/lang3/time/FastDateParser_TimeZoneStrategyTest.java
+++ 
b/src/test/java/org/apache/commons/lang3/time/FastDateParser_TimeZoneStrategyTest.java
@@ -129,8 +129,9 @@ public class FastDateParser_TimeZoneStrategyTest extends 
AbstractLangTest {
                         Java17Failures.add(locale);
                         // Mark as an assumption failure instead of a hard fail
                         System.err.printf(
-                                "Java %s - Mark as an assumption failure 
instead of a hard fail: locale = '%s', parse = '%s'%n",
-                                SystemUtils.JAVA_VERSION,
+                                "Java %s %s - Mark as an assumption failure 
instead of a hard fail: locale = '%s', parse = '%s'%n",
+                                SystemUtils.JAVA_VENDOR,
+                                SystemUtils.JAVA_VM_VERSION,
                                 localeStr, tzDisplay);
                         assumeTrue(false, localeStr);
                         continue;
@@ -142,7 +143,7 @@ public class FastDateParser_TimeZoneStrategyTest extends 
AbstractLangTest {
                         System.err.printf(
                                 "Java %s %s - Mark as an assumption failure 
instead of a hard fail: locale = '%s', parse = '%s'%n",
                                 SystemUtils.JAVA_VENDOR,
-                                SystemUtils.JAVA_VERSION,
+                                SystemUtils.JAVA_VM_VERSION,
                                 localeStr, tzDisplay);
                         assumeTrue(false, localeStr);
                         continue;

Reply via email to