Skip to content

Commit

Permalink
split long line in ConvertProcessorTests
Browse files Browse the repository at this point in the history
  • Loading branch information
talevy committed Mar 29, 2016
1 parent 16e888f commit 833fc84
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,8 @@ public void testAutoConvertStringNotMatched() throws Exception {
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);
Expand Down

0 comments on commit 833fc84

Please sign in to comment.