[TEST] Mute ConvertProcessortTests.testConvertIntHexError

Relates #32370
This commit is contained in:
Dimitris Athanasiou 2018-07-25 17:35:23 +01:00
parent 6cf7588c3d
commit de53f0123f
1 changed files with 1 additions and 0 deletions

View File

@ -67,6 +67,7 @@ public class ConvertProcessorTests extends ESTestCase {
assertThat(ingestDocument.getFieldValue(fieldName, Integer.class), equalTo(10)); assertThat(ingestDocument.getFieldValue(fieldName, Integer.class), equalTo(10));
} }
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/32370")
public void testConvertIntHexError() { public void testConvertIntHexError() {
IngestDocument ingestDocument = RandomDocumentPicks.randomIngestDocument(random()); IngestDocument ingestDocument = RandomDocumentPicks.randomIngestDocument(random());
String value = "0x" + randomAlphaOfLengthBetween(1, 10); String value = "0x" + randomAlphaOfLengthBetween(1, 10);