emiliosetiadarma commented on code in PR #6272:
URL: https://github.com/apache/nifi/pull/6272#discussion_r939484014
##########
nifi-nar-bundles/nifi-standard-bundle/nifi-standard-processors/src/test/java/org/apache/nifi/processors/standard/AbstractTestTailFileScenario.java:
##########
@@ -125,7 +126,7 @@ public void testScenario(List<Action> actions) throws
Exception {
public void testScenario(List<Action> actions, boolean
stopAfterEachTrigger) throws Exception {
if (actions.contains(Action.ROLLOVER)) {
- Assume.assumeTrue("Test wants to rename an open file which is not
allowed on Windows", !SystemUtils.IS_OS_WINDOWS);
+ assumeTrue(!SystemUtils.IS_OS_WINDOWS, "Test wants to rename an
open file which is not allowed on Windows");
Review Comment:
Going to make the change and remove the logging as well. Since the tests is
only disabled if the action has `Action.Rollover`, I disabled the tests that
has that action specified
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]