Hack to try to see if we can get GH builds to pass

This commit is contained in:
Gary Gregory 2023-08-14 08:25:28 -04:00
parent fa6eac6cf6
commit 2f670821ab
1 changed files with 2 additions and 1 deletions

View File

@ -54,6 +54,8 @@ import org.opentest4j.AssertionFailedError;
/* make test reproducible */ @ReadsDefaultTimeZone
public class FastDateParser_TimeZoneStrategyTest extends AbstractLangTest {
static int failCount = 0; // HACK counter
@Test
public void testLang1219() throws ParseException {
final FastDateParser parser = new FastDateParser("dd.MM.yyyy HH:mm:ss z", TimeZone.getDefault(), Locale.GERMAN);
@ -108,7 +110,6 @@ public class FastDateParser_TimeZoneStrategyTest extends AbstractLangTest {
assumeTrue(LocaleUtils.isAvailableLocale(locale), () -> toFailureMessage(locale, null));
final String[][] zones = ArraySorter.sort(DateFormatSymbols.getInstance(locale).getZoneStrings(), Comparator.comparing(array -> array[0]));
int failCount = 0; // HACK counter
final List<AssertionFailedError> parseExceptionList = new ArrayList<>();
for (final String[] zone : zones) {
for (int zIndex = 1; zIndex < zone.length; ++zIndex) {