Github user MikeThomsen commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2432#discussion_r164268334
--- Diff:
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/java/org/apache/nifi/processors/standard/TestExecuteProcess.java
---
@@ -127,6 +128,10 @@ public void validateProcessInterruptOnStop() throws
Exception {
fail();
}
+ final List<MockFlowFile> flowFiles =
runner.getFlowFilesForRelationship(ExecuteProcess.REL_SUCCESS);
+ if(!flowFiles.isEmpty()) {
--- End diff --
Nit: there should be a space between the if and the (
---