Mute DateProcessorTests#testJodaPatternLocale (#38265)

Only fails on FIPS 8, muting this selectively.
This commit is contained in:
Christoph Büscher 2019-02-03 19:52:53 +01:00 committed by GitHub
parent d2cc1459a3
commit 820029522b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -113,6 +113,8 @@ public class DateProcessorTests extends ESTestCase {
} }
public void testJavaPatternLocale() { public void testJavaPatternLocale() {
// @AwaitsFix(bugUrl="https://github.com/elastic/elasticsearch/issues/31724")
assumeFalse("Can't run in a FIPS JVM, Joda parse date error", inFipsJvm());
DateProcessor dateProcessor = new DateProcessor(randomAlphaOfLength(10), DateProcessor dateProcessor = new DateProcessor(randomAlphaOfLength(10),
templatize(ZoneId.of("Europe/Amsterdam")), templatize(Locale.ITALIAN), templatize(ZoneId.of("Europe/Amsterdam")), templatize(Locale.ITALIAN),
"date_as_string", Collections.singletonList("yyyy dd MMMM"), "date_as_date"); "date_as_string", Collections.singletonList("yyyy dd MMMM"), "date_as_date");