Skip to content

Commit 833fc84

Browse files
committed
split long line in ConvertProcessorTests
1 parent 16e888f commit 833fc84

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

core/src/test/java/org/elasticsearch/ingest/processor/ConvertProcessorTests.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,8 @@ public void testAutoConvertStringNotMatched() throws Exception {
304304
public void testAutoConvertMatchBoolean() throws Exception {
305305
boolean randomBoolean = randomBoolean();
306306
String booleanString = Boolean.toString(randomBoolean);
307-
IngestDocument ingestDocument = RandomDocumentPicks.randomIngestDocument(random(), Collections.singletonMap("field", booleanString));
307+
IngestDocument ingestDocument = RandomDocumentPicks.randomIngestDocument(random(),
308+
Collections.singletonMap("field", booleanString));
308309
Processor processor = new ConvertProcessor(randomAsciiOfLength(10), "field", "field", Type.AUTO);
309310
processor.execute(ingestDocument);
310311
Object convertedValue = ingestDocument.getFieldValue("field", Object.class);

0 commit comments

Comments
 (0)