Github user adyoun2 commented on a diff in the pull request:
https://github.com/apache/nifi/pull/3033#discussion_r225122035
--- Diff:
nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-documentation/src/test/java/org/apache/nifi/documentation/DocGeneratorTest.java
---
@@ -72,7 +74,12 @@ public void testProcessorLoadsNarResources() throws
IOException, ClassNotFoundEx
}
private NiFiProperties loadSpecifiedProperties(final String
propertiesFile, final String key, final String value) {
- String file =
DocGeneratorTest.class.getResource(propertiesFile).getFile();
+ String file = propertiesFile;
--- End diff --
Sorry, it was relevant, to get it working in my local environment, where
someone had put spaces in the path, %20 in resource paths needed converting
back to ' '
---