This is an automated email from the ASF dual-hosted git repository.
ijokarumawak pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nifi.git
The following commit(s) were added to refs/heads/master by this push:
new c470608 NIFI-6035 Fix check-style issue
c470608 is described below
commit c470608daf7e5d3267a73fc4b718cd738f17108a
Author: Koji Kawamura <[email protected]>
AuthorDate: Wed May 22 16:07:17 2019 +0900
NIFI-6035 Fix check-style issue
---
.../src/test/java/org/apache/nifi/record/path/TestRecordPath.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/nifi-commons/nifi-record-path/src/test/java/org/apache/nifi/record/path/TestRecordPath.java
b/nifi-commons/nifi-record-path/src/test/java/org/apache/nifi/record/path/TestRecordPath.java
index cd57078..848886f 100644
---
a/nifi-commons/nifi-record-path/src/test/java/org/apache/nifi/record/path/TestRecordPath.java
+++
b/nifi-commons/nifi-record-path/src/test/java/org/apache/nifi/record/path/TestRecordPath.java
@@ -1306,7 +1306,8 @@ public class TestRecordPath {
.evaluate(record).getSelectedFields().findFirst().get();
assertEquals("2017-10-20", fieldValue2.getValue());
- final FieldValue fieldValue3 = RecordPath.compile("format(
toDate(/date, \"yyyy-MM-dd'T'HH:mm:ss'Z'\"), 'yyyy-MM-dd HH:mm',
'GMT+8:00')").evaluate(record).getSelectedFields().findFirst().get();
+ final FieldValue fieldValue3 = RecordPath.compile("format(
toDate(/date, \"yyyy-MM-dd'T'HH:mm:ss'Z'\"), 'yyyy-MM-dd HH:mm', 'GMT+8:00')")
+ .evaluate(record).getSelectedFields().findFirst().get();
assertEquals("2017-10-20 19:00", fieldValue3.getValue());
final FieldValue fieldValueUnchanged = RecordPath.compile("format(
toDate(/date, \"yyyy-MM-dd'T'HH:mm:ss'Z'\"), 'INVALID'
)").evaluate(record).getSelectedFields().findFirst().get();