From 833fc8420fb792aab5ef5310d5787d621509d6d0 Mon Sep 17 00:00:00 2001 From: Tal Levy Date: Tue, 29 Mar 2016 08:19:15 -0700 Subject: [PATCH] split long line in ConvertProcessorTests --- .../elasticsearch/ingest/processor/ConvertProcessorTests.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/src/test/java/org/elasticsearch/ingest/processor/ConvertProcessorTests.java b/core/src/test/java/org/elasticsearch/ingest/processor/ConvertProcessorTests.java index 936875cf73a..0efacb145bd 100644 --- a/core/src/test/java/org/elasticsearch/ingest/processor/ConvertProcessorTests.java +++ b/core/src/test/java/org/elasticsearch/ingest/processor/ConvertProcessorTests.java @@ -304,7 +304,8 @@ public class ConvertProcessorTests extends ESTestCase { public void testAutoConvertMatchBoolean() throws Exception { boolean randomBoolean = randomBoolean(); String booleanString = Boolean.toString(randomBoolean); - IngestDocument ingestDocument = RandomDocumentPicks.randomIngestDocument(random(), Collections.singletonMap("field", booleanString)); + IngestDocument ingestDocument = RandomDocumentPicks.randomIngestDocument(random(), + Collections.singletonMap("field", booleanString)); Processor processor = new ConvertProcessor(randomAsciiOfLength(10), "field", "field", Type.AUTO); processor.execute(ingestDocument); Object convertedValue = ingestDocument.getFieldValue("field", Object.class);