Skip to content

Commit 3cf949a

Browse files
committed
More precise test reporting
1 parent 97ad304 commit 3cf949a

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/test/java/org/apache/commons/lang3/time/FastDateParser_TimeZoneStrategyTest.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,9 @@ private void testTimeZoneStrategyPattern_DateFormatSymbols_getZoneStrings(final
129129
Java17Failures.add(locale);
130130
// Mark as an assumption failure instead of a hard fail
131131
System.err.printf(
132-
"Java %s - Mark as an assumption failure instead of a hard fail: locale = '%s', parse = '%s'%n",
133-
SystemUtils.JAVA_VERSION,
132+
"Java %s %s - Mark as an assumption failure instead of a hard fail: locale = '%s', parse = '%s'%n",
133+
SystemUtils.JAVA_VENDOR,
134+
SystemUtils.JAVA_VM_VERSION,
134135
localeStr, tzDisplay);
135136
assumeTrue(false, localeStr);
136137
continue;
@@ -142,7 +143,7 @@ private void testTimeZoneStrategyPattern_DateFormatSymbols_getZoneStrings(final
142143
System.err.printf(
143144
"Java %s %s - Mark as an assumption failure instead of a hard fail: locale = '%s', parse = '%s'%n",
144145
SystemUtils.JAVA_VENDOR,
145-
SystemUtils.JAVA_VERSION,
146+
SystemUtils.JAVA_VM_VERSION,
146147
localeStr, tzDisplay);
147148
assumeTrue(false, localeStr);
148149
continue;

0 commit comments

Comments
 (0)