ChrisSamo632 commented on code in PR #6806:
URL: https://github.com/apache/nifi/pull/6806#discussion_r1059062965
##########
nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-site-to-site/src/test/groovy/org/apache/nifi/remote/StandardPublicPortGroovyTest.groovy:
##########
@@ -109,6 +98,6 @@ class StandardPublicPortGroovyTest extends GroovyTestCase {
logger.info("Received ${responses.sum()} total flowfiles")
// Assert
- assert !responses.isEmpty()
+ assertFalse(!responses.isEmpty())
Review Comment:
```suggestion
assertFalse(responses.isEmpty())
```
Need to remove the `!` to retain the original assertion logic (or use
`assertTrue` with the `!` but that would be more confusing to maintain)
--
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]